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

A339052
Odd bisection of the infinite Fibonacci word A096270.
7
1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1
OFFSET
0
LINKS
FORMULA
a(n) = [(2n+2)r] - [(2n+1)r] - 1, where [ ] = floor and r = golden ratio (A001622).
a(n) = A005206(2*n+1) - A005206(2*n) = A001961(n+1) - A001965(n). - Peter Bala, Aug 09 2022
EXAMPLE
A096270 = (0,1,0,1,1,0,1,0,1,1,0,1,1,.. ), so that
A339051 = (0,0,1,1,1,0,...), the even bisection.
A339052 = (1,1,0,0,1,1,...), the odd bisection.
MATHEMATICA
r = (1 + Sqrt[5])/2; z = 200;
Table[Floor[(2 n + 1) r] - Floor[2 n r] - 1, {n, 0, Floor[z/2]}] (*A339051*)
Table[Floor[(2 n + 2) r] - Floor[(2 n + 1) r] - 1, {n, 0, Floor[z/2]}] (*A339052*)
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Dec 08 2020
STATUS
approved