A031269 Write the (n+1)st Fibonacci number in base 5 and juxtapose.
1, 2, 3, 1, 0, 1, 3, 2, 3, 4, 1, 1, 1, 4, 2, 1, 0, 3, 2, 4, 1, 0, 3, 4, 1, 4, 1, 3, 3, 0, 0, 2, 4, 4, 2, 0, 1, 2, 4, 2, 2, 2, 2, 3, 4, 2, 4, 0, 3, 1, 4, 1, 1, 3, 2, 1, 1, 2, 0, 4, 0, 3, 0, 3, 2, 2, 2, 4, 1, 1, 0, 3, 1, 3, 2, 1, 1, 4, 0, 4, 1, 1, 2, 2, 4, 4, 0, 4, 3, 3
Offset: 1
Keywords
Programs
-
Mathematica
Flatten[Table[IntegerDigits[Fibonacci[n+1],5],{n,30}]] (* Harvey P. Dale, Sep 29 2013 *)