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”).

A284386
Fixed point of the morphism 0->1, 1->1101.
1
1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1
OFFSET
1
COMMENTS
Let u(n) = # 0's <= n and v(n) = # 1's <= n. Let r = (5+sqrt(3))/2 and s = (-1+sqrt(13))/2, so that 1/r + 1/s = 1. Conjecture: 0 < n*r - u(n) < 2 and -1 < n*s - v(n) < 1 for n >= 1.
EXAMPLE
1->1101-> 1101110111101->
MATHEMATICA
s = Nest[Flatten[# /. {0 -> {1}, 1 -> {1, 1, 0, 1}}] &, {0}, 13]; (* A284386 *)
Flatten[Position[s, 0]]; (* A184483 *)
Flatten[Position[s, 1]]; (* A184482 *)
CROSSREFS
Sequence in context: A118828 A105234 A285599 * A286922 A285668 A267813
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Mar 26 2017
STATUS
approved