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

A284368
Fixed point of the morphism 0->1, 1->1011.
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, 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
OFFSET
1
COMMENTS
Let u(n) = # 0's <= n and v(n) = # 1's <= n. Let r = (5+sqrt(13))/2 and s = (-1+sqrt(13))/2, so that 1/r + 1/s = 1. Conjecture: 1 < n*r - u(n) < 3 and -1 < n*s - v(n) < 1 for n >= 1.
EXAMPLE
1->1011-> 1011110111011->
MATHEMATICA
s = Nest[Flatten[# /. {0 -> {1}, 1 -> {1, 0, 1, 1}}] &, {0}, 10] (* A284368 *)
Flatten[Position[s, 0]] (* A184485 *)
Flatten[Position[s, 1]] (* A184484 *)
CROSSREFS
Sequence in context: A121967 A356310 A285430 * A287725 A176702 A188038
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Mar 26 2017
STATUS
approved