[go: up one dir, main page]

login
A088203
Infinite audioactive word that shifts 1 place left under "Look and Say" method A, starting with a(1)=2.
7
2, 1, 2, 1, 1, 1, 2, 3, 1, 1, 2, 1, 3, 2, 1, 1, 2, 1, 1, 1, 3, 1, 2, 2, 1, 1, 2, 3, 1, 1, 3, 1, 1, 2, 2, 2, 1, 1, 2, 1, 3, 2, 1, 1, 3, 2, 1, 3, 2, 2, 1, 1, 2, 1, 1, 1, 3, 1, 2, 2, 1, 1, 3, 1, 2, 1, 1, 1, 3, 2, 2, 2, 1, 1, 2, 3, 1, 1, 3, 1, 1, 2, 2, 2, 1, 1, 3, 1, 1, 1, 2, 3, 1, 1, 3, 3, 2, 2, 1, 1, 2, 1, 3, 2, 1
OFFSET
1,1
COMMENTS
A006751(n) = concatenation of n-th row. - Reinhard Zumkeller, Aug 09 2012
From Jean-Christophe Hervé, May 07 2013: (Start)
The sequence is obtained continuously by applying the look-and-say rule from seed 2: 2 -> 1,2 -> 1,1,1,2 -> etc. The sequence is then determined by pairs of digits. Terms of even ranks are counts while odd ranks are figures. A225224 and A221646 are from seed 1 and A088204 from seed 3.
The present sequence is the concatenation of A006751 (original look-and-say method by blocks) because, with seed 2, all blocks of A006751 begin with 1 or 3 and end with 2 and therefore, there is no possible interaction between blocks after concatenation. (end)
REFERENCES
J. H. Conway, The weird and wonderful chemistry of audioactive decay, in T. M. Cover and Gopinath, eds., Open Problems in Communication and Computation, Springer, NY 1987, pp. 173-188.
PROG
(Haskell) see Watkins link, p. 3.
import Data.List (group)
a088203 n k = a088203_tabf !! (n-1) !! (k-1)
a088203_row n = a088203_tabf !! (n-1)
a088203_tabf = iterate
(concat . map (\xs -> [length xs, head xs]) . group) [2]
-- Reinhard Zumkeller, Aug 09 2012
CROSSREFS
Cf. A225224, A221646 (seed one).
Sequence in context: A140816 A029433 A337144 * A205649 A376306 A176510
KEYWORD
nonn,easy,tabf
AUTHOR
Paul D. Hanna, Sep 22 2003
STATUS
approved