OFFSET
1,3
EXAMPLE
a(6)=170 because the sixth Fibonacci number is 8 and thus the first eight digits of the pattern give the binary number 10101010, which is 170 in base 10.
a(7) is the decimal translation of the first 13 (seventh Fibonacci number) digits of 101010..., giving 5461.
MATHEMATICA
Module[{nn=20, p}, p=PadRight[{}, Fibonacci[nn], {1, 0}]; Table[ FromDigits[ Take[ p, n], 2], {n, Fibonacci[Range[nn]]}]] (* Harvey P. Dale, Apr 08 2015 *)
CROSSREFS
KEYWORD
base,easy,nonn
AUTHOR
Alexandre Wajnberg, May 31 2005
EXTENSIONS
Corrected and extended by Harvey P. Dale, Apr 08 2015
STATUS
approved