login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A088205 Infinite audioactive word that shifts 1 place left under "Look and Say" method A, starting with a(0)=0. 1
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 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,8
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
LINKS
EXAMPLE
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,...}.
PROG
(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
CROSSREFS
Sequence in context: A062172 A196838 A284376 * A318923 A336111 A244657
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Sep 22 2003
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 10:29 EDT 2024. Contains 371905 sequences. (Running on oeis4.)