A088203 Infinite audioactive word that shifts 1 place left under "Look and Say" method A, starting with a(1)=2.
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
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.
Links
- Reinhard Zumkeller, Rows n = 1..25 of triangle, flattened
- Kevin Watkins, Abstract Interpretation Using Laziness: Proving Conway's Lost Cosmological Theorem,
- Kevin Watkins, Proving Conway's Lost Cosmological Theorem, POP seminar talk, CMU, Dec 2006
- Eric Weisstein's World of Mathematics, Look and Say Sequence
- Wikipedia, Look-and-say sequence
Crossrefs
Programs
-
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
Comments