cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A088203 Infinite audioactive word that shifts 1 place left under "Look and Say" method A, starting with a(1)=2.

Original entry on oeis.org

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

Views

Author

Paul D. Hanna, Sep 22 2003

Keywords

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.

Crossrefs

Cf. A225224, A221646 (seed one).

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