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.

Showing 1-6 of 6 results.

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

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

Original entry on oeis.org

3, 1, 3, 1, 1, 1, 3, 3, 1, 2, 3, 1, 1, 1, 2, 1, 3, 3, 1, 1, 2, 1, 1, 2, 3, 2, 1, 1, 2, 2, 1, 1, 2, 1, 3, 1, 2, 2, 1, 2, 2, 2, 1, 1, 2, 1, 1, 1, 3, 1, 1, 2, 2, 1, 1, 3, 2, 2, 1, 1, 2, 3, 1, 1, 3, 2, 1, 2, 2, 2, 1, 1, 3, 2, 2, 2, 1, 1, 2, 1, 3, 2, 1, 1, 3, 1, 2, 1, 1, 3, 2, 2, 1, 1, 3, 3, 2, 2, 1, 1, 2, 1, 1, 1, 3
Offset: 1

Views

Author

Paul D. Hanna, Sep 22 2003

Keywords

Comments

The sequence is obtained continuously by applying the look-and-say rule from seed 3 : 3 -> 1,3 -> 1,1,1,3 -> 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 A088203 from seed 2. [Jean-Christophe Hervé, May 07 2013]

Crossrefs

Cf. A225224, A221646 (seed one).

A087283 An infinite audioactive word, one of three in the cycle that results from the limit of the 'Look and Say' sequence using method A with an initial term of 1 (A005150).

Original entry on oeis.org

3, 1, 1, 3, 1, 1, 2, 2, 2, 1, 1, 3, 1, 1, 1, 2, 3, 1, 1, 3, 3, 2, 1, 1, 1, 2, 1, 3, 1, 2, 2, 1, 1, 2, 3, 1, 1, 3, 1, 1, 1, 2, 3, 1, 1, 2, 1, 1, 1, 3, 3, 1, 1, 2, 1, 1, 1, 3, 1, 2, 2, 1, 1, 2, 1, 3, 2, 1, 1, 3, 1, 2, 1, 1, 1, 3, 2, 2, 2, 1, 1, 2, 3, 1, 1, 3, 1, 1, 2, 2, 1, 1, 1, 2, 1, 3, 1, 2, 2, 1, 1, 2, 3, 1, 1
Offset: 1

Views

Author

Paul D. Hanna, Aug 28 2003

Keywords

Comments

Performing 'Look and Say' once generates A087284, twice results in A087282, while three operations yield the original infinite word.

Crossrefs

A087284 An infinite audioactive word, one of three in the cycle that results from the limit of the 'Look and Say' sequence using method A with an initial term of 1 (A005150).

Original entry on oeis.org

1, 3, 2, 1, 1, 3, 2, 1, 3, 2, 2, 1, 1, 3, 3, 1, 1, 2, 1, 3, 2, 1, 2, 3, 1, 2, 3, 1, 1, 2, 1, 1, 1, 3, 1, 1, 2, 2, 2, 1, 1, 2, 1, 3, 2, 1, 1, 3, 3, 1, 1, 2, 1, 3, 2, 1, 1, 2, 3, 1, 2, 3, 2, 1, 1, 2, 3, 1, 1, 3, 1, 1, 2, 2, 2, 1, 1, 2, 1, 1, 1, 3, 1, 2, 2, 1, 1, 3, 1, 1, 1, 2, 3, 1, 1, 3, 3, 2, 2, 1, 1, 2, 1, 3, 2
Offset: 1

Views

Author

Paul D. Hanna, Aug 28 2003

Keywords

Comments

Performing 'Look and Say' once generates A087282, twice results in A087283, while three operations yield the original infinite word.

Crossrefs

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

Original entry on oeis.org

0, 1, 0, 1, 1, 1, 0, 3, 1, 1, 0, 1, 3, 2, 1, 1, 0, 1, 1, 1, 3, 1, 2, 2, 1, 1, 0, 3, 1, 1, 3, 1, 1, 2, 2, 2, 1, 1, 0, 1, 3, 2, 1, 1, 3, 2, 1, 3, 2, 2, 1, 1, 0, 1, 1, 1, 3, 1, 2, 2, 1, 1, 3, 1, 2, 1, 1, 1, 3, 2, 2, 2, 1, 1, 0, 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, 0, 1, 3, 2, 1
Offset: 0

Views

Author

Paul D. Hanna, Sep 22 2003

Keywords

Comments

Positions of zero are given by A088206.
The sequence is obtained by starting with 0 and then successively appending the count (number of repetitions) and the value which is seen, term after term: "one zero, one one, one zero, three ones, one zero, ...". Otherwise said, the sequence is defined by "Start with 0 and append the result of "Look and Say" applied to the sequence". The "shifted left under Look and Say" property is thus an immediate consequence of the definition. A less trivial property is that there cannot be a number larger than 3 in this sequence. - M. F. Hasler, Jul 28 2015

Examples

			The initial terms {0,1,0,1,1,1,0,3,1,1,0,...} are shifted 1 place left by saying: "one 0, one 1, one 0, three 1's, one 0, ...", which drops the leading 0 to give {1,0,1,1,1,0,3,1,1,0,...}.
		

Crossrefs

Programs

  • PARI
    a=List(0);my(i=1);while(#a<200,listput(a,1);listput(a,a[i]);while(a[i++]==a[#a],a[#a-1]++));a \\ M. F. Hasler, Jul 28 2015

A088206 Positions of zero in the infinite audioactive word, A088205, which shifts left under "Look and Say" method A, starting with a(1)=0.

Original entry on oeis.org

1, 3, 7, 11, 17, 27, 39, 53, 75, 101, 131, 175, 231, 301, 399, 529, 691, 907, 1199, 1557, 2027, 2655, 3447, 4497, 5881, 7669, 10003, 13075, 17049, 22211, 28995, 37781, 49201, 64193
Offset: 1

Views

Author

Paul D. Hanna, Sep 22 2003

Keywords

Comments

Empirically the partial sums of A022471. - Sean A. Irvine, Jul 13 2022

Examples

			The initial terms of A088205, {0,1,0,1,1,1,0,3,1,1,0,...}, are shift left by saying: "one 0, one 1, one 0, three 1's, one 0, ...", which drops the leading 0 to give {1,0,1,1,1,0,3,1,1,0,...}.
		

Crossrefs

Showing 1-6 of 6 results.