A287438 Start with 0 and repeatedly substitute 0->012, 1->120, 2->210.
0, 1, 2, 1, 2, 0, 2, 1, 0, 1, 2, 0, 2, 1, 0, 0, 1, 2, 2, 1, 0, 1, 2, 0, 0, 1, 2, 1, 2, 0, 2, 1, 0, 0, 1, 2, 2, 1, 0, 1, 2, 0, 0, 1, 2, 0, 1, 2, 1, 2, 0, 2, 1, 0, 2, 1, 0, 1, 2, 0, 0, 1, 2, 1, 2, 0, 2, 1, 0, 0, 1, 2, 0, 1, 2, 1, 2, 0, 2, 1, 0, 1, 2, 0, 2, 1
Offset: 1
Examples
First three iterations of the morphism: 012, 012120210, 012120210120210012210120012.
Links
Programs
-
Mathematica
s = Nest[Flatten[# /. {0->{0, 1, 2}, 1->{1, 2, 0}, 2->{2, 1, 0}}] &, {0}, 9]; (*A287438*) Flatten[Position[s, 0]]; (*A189728*) Flatten[Position[s, 1]]; (*A189670*) Flatten[Position[s, 2]]; (*A287441*) SubstitutionSystem[{0->{0,1,2},1->{1,2,0},2->{2,1,0}},0,{5}][[1]] (* Harvey P. Dale, Nov 11 2024 *)
Comments