login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A285076
1-limiting word of the morphism 0->10, 1-> 010.
6
1, 0, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 0, 1, 0, 1
OFFSET
1
COMMENTS
The morphism 0->10, 1->010 has two limiting words. If the number of iterations is even, the 0-word evolves from 0 -> 10 -> 01010 -> 100101001010 -> 01010100101001010100101001010; if the number of iterations is odd, the 1-word evolves from 0 -> 10 -> 01010 -> 100101001010, as in A285076.
From Michel Dekking, May 27 2017: (Start)
(a(n-1)) is the Sturmian sequence
s(r,1-r) = (floor((n+1)r+1-r)-floor(nr+1-r))) with r = sqrt(2)-1.
Moreover, a = 10c, where c = A159684 is the Sturmian sequence
s(r,r) = (floor((n+2)r)-floor((n+1)r))),
fixed point of the morphism gamma: 0 -> 01, 1 -> 010.
The morphism gamma is the time-reversal of the morphism psi: 0 -> 10, 1 -> 010 generating (a(n)).
This is a general property: see reference and link. It is also general that the square of psi has a second fixed point b = 01c, where b = A285073. (End)
LINKS
J. Berstel et P. Séébold, A remark on Sturmian words, RAIRO - Theoretical Informatics and Applications 28 (1994), 255-263.
Michel Dekking, Substitution invariant Sturmian words and binary trees, arXiv:1705.08607 [math.CO], 2017.
Michel Dekking, Substitution invariant Sturmian words and binary trees, Integers, Electronic Journal of Combinatorial Number Theory 18A (2018), #A17.
MATHEMATICA
s = Nest[Flatten[# /. {0 -> {1, 0}, 1 -> {0, 1, 0}}] &, {0}, 13]; (* A285076 *)
Flatten[Position[s, 0]]; (* A285077 *)
Flatten[Position[s, 1]]; (* A285078 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Apr 19 2017
STATUS
approved