A287451 Start with 0 and repeatedly substitute 0->012, 1->201, 2->120.
0, 1, 2, 2, 0, 1, 1, 2, 0, 1, 2, 0, 0, 1, 2, 2, 0, 1, 2, 0, 1, 1, 2, 0, 0, 1, 2, 2, 0, 1, 1, 2, 0, 0, 1, 2, 0, 1, 2, 2, 0, 1, 1, 2, 0, 1, 2, 0, 0, 1, 2, 2, 0, 1, 1, 2, 0, 0, 1, 2, 2, 0, 1, 2, 0, 1, 1, 2, 0, 0, 1, 2, 0, 1, 2, 2, 0, 1, 1, 2, 0, 1, 2, 0, 0, 1
Offset: 1
Examples
First three iterations of the morphism: 012, 012201120, 012201120120012201201120012.
Links
Programs
-
Mathematica
s = Nest[Flatten[# /. {0->{0, 1, 2}, 1->{2, 0, 1}, 2->{1, 2, 0}}] &, {0}, 9]; (*A287451*) Flatten[Position[s, 0]]; (*A287452*) Flatten[Position[s, 1]]; (*A287453*) Flatten[Position[s, 2]]; (*A287454*) SubstitutionSystem[{0->{0,1,2},1->{2,0,1},2->{1,2,0}},{0},{5}][[1]] (* Harvey P. Dale, Nov 27 2024 *)
Comments