A088205 Infinite audioactive word that shifts 1 place left under "Look and Say" method A, starting with a(0)=0.
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
Keywords
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,...}.
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
Comments