[go: up one dir, main page]

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

A283963
Fixed point of the morphism 0 -> 1, 1 -> 1010.
3
1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1
OFFSET
1
COMMENTS
Let u(n) = # 0's <= n and v(n) = # 1's <= n. Let r = (3+sqrt(3))/2 and s = sqrt(3), so that 1/r + 1/s = 1. Conjecture: -1 < n*r - u(n) < 2 and -1 < n*s - v(n) < 2 for n >= 1.
EXAMPLE
1 -> 1010 -> 1010110101 -> 1010110101101010101101011010 ->
MATHEMATICA
s = Nest[Flatten[# /. {0 -> {1}, 1 -> {1, 0, 1, 0}}] &, {0}, 10] (* A283963 *)
Flatten[Position[s, 0]] (* A283964 *)
Flatten[Position[s, 1]] (* A283965 *)
CROSSREFS
Sequence in context: A113704 A341150 A244220 * A131670 A188044 A287523
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Mar 25 2017
STATUS
approved