A181632 The Fibonacci Champernowne sequence.
0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1
Offset: 0
Examples
First few segregated Fibonacci terms (0-6) = (0, 1, 10, 11, 101, 110, 111); so the juxtaposed string begins (0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1,...).
Programs
-
Mathematica
Flatten[DeleteCases[IntegerDigits[-1 + Range[200], 2], {_, 0, 0, _}]] (* Peter J. C. Moses, Mar 03 2015 *)
Formula
Write n in Fibonacci Maximal notation and juxtapose.
Comments