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!)
A288996 Length of n-th iterate of the mapping 00->0010, 01->001, 10->000, starting with 00. 2
2, 4, 7, 12, 22, 39, 68, 121, 213, 379, 676, 1206, 2155, 3832, 6823, 12156, 21658, 38584, 68716, 122402, 218016, 388317, 691583, 1231599, 2193224, 3905575, 6954709, 12384775, 22053977, 39271946, 69933281, 124534373, 221766354, 394914918, 703253649, 1252338238 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
MATHEMATICA
z = 20; (* number of iterates *)
s = {0, 0}; w[0] = StringJoin[Map[ToString, s]];
w[n_] := StringReplace[w[n - 1], {"00" -> "0010", "01" -> "001", "10" -> "000"}]
TableForm[Table[w[n], {n, 0, 10}]]
Table[StringLength[w[n]], {n, 0, 20}] (* A288996 *)
CROSSREFS
Sequence in context: A257932 A287439 A026713 * A289153 A289019 A254685
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Jun 25 2017
EXTENSIONS
a(27)-a(35) from Lars Blomberg, Jul 05 2017
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 22:36 EDT 2024. Contains 371917 sequences. (Running on oeis4.)