OFFSET
1
COMMENTS
The morphism 0->10, 1->001 has two limiting words. If the number of iterations is even, the 0-word evolves from 0 -> 10 -> 00110 -> 101000100110 -> 00110001101010001101000100110; if the number of iterations is odd, the 1-word evolves from 0 -> 10 -> 00110 -> 101000100110, as in A285034.
LINKS
Clark Kimberling, Table of n, a(n) for n = 1..10000
MATHEMATICA
s = Nest[Flatten[# /. {0 -> {1, 0}, 1 -> {0, 0, 1}}] &, {0}, 9]; (* A285034 *)
Flatten[Position[s, 0]]; (* A285035 *)
Flatten[Position[s, 1]]; (* A285036 *)
SubstitutionSystem[{0->{1, 0}, 1->{0, 0, 1}}, {1, 0}, {6}][[1]] (* Harvey P. Dale, Apr 06 2022 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Apr 19 2017
STATUS
approved