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

A037842
Fibonacci numbers in base 1.
3
1, 11, 111, 11111, 11111111, 1111111111111, 111111111111111111111, 1111111111111111111111111111111111, 1111111111111111111111111111111111111111111111111111111
OFFSET
0,2
FORMULA
a(n+2) = concat( a(n+1), a(n) ), a(0) = 1, a(1) = 11. - corrected by Jason Kimberley, Dec 17 2012
MATHEMATICA
FromDigits[Table[1, {#}]]&/@Fibonacci[Range[2, 10]] (* Harvey P. Dale, Apr 06 2013 *)
CROSSREFS
Sequence in context: A031974 A117293 A015468 * A131293 A108047 A144784
KEYWORD
nonn,easy,base
AUTHOR
N. J. A. Sloane, Feb 27 2000
EXTENSIONS
More terms from James A. Sellers, Mar 01 2000
STATUS
approved