cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-1 of 1 results.

A031324 Decimal digits of successive Fibonacci numbers.

Original entry on oeis.org

0, 1, 1, 2, 3, 5, 8, 1, 3, 2, 1, 3, 4, 5, 5, 8, 9, 1, 4, 4, 2, 3, 3, 3, 7, 7, 6, 1, 0, 9, 8, 7, 1, 5, 9, 7, 2, 5, 8, 4, 4, 1, 8, 1, 6, 7, 6, 5, 1, 0, 9, 4, 6, 1, 7, 7, 1, 1, 2, 8, 6, 5, 7, 4, 6, 3, 6, 8, 7, 5, 0, 2, 5, 1, 2, 1, 3, 9, 3, 1, 9, 6, 4, 1, 8, 3, 1, 7, 8, 1, 1, 5
Offset: 0

Views

Author

Keywords

Comments

Decimal concatenation of Fibonacci numbers in base 10. - Daniel Forgues, Mar 25 2018

Examples

			0.011235813213455891442333776109871597...
		

Crossrefs

Programs

  • Maple
    F:= [seq(combinat:-fibonacci(n),n=0..50)]:
    map(t -> op(ListTools:-Reverse(convert(t,base,10))),F); # Robert Israel, Oct 11 2024
  • Mathematica
    Flatten[IntegerDigits/@Fibonacci[Range[0,30]]] (* Harvey P. Dale, Jan 28 2015 *)

Formula

An approximation, where each successive Fibonacci number is shifted right by one place (thus causing an overlap when numbers have more than one digit), is given by 10/89 (A021093). - Daniel Forgues, Mar 25 2018
Showing 1-1 of 1 results.