login
Decimal digits of successive Fibonacci numbers.
13

%I #31 Oct 11 2024 16:11:38

%S 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,

%T 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,

%U 7,5,0,2,5,1,2,1,3,9,3,1,9,6,4,1,8,3,1,7,8,1,1,5

%N Decimal digits of successive Fibonacci numbers.

%C Decimal concatenation of Fibonacci numbers in base 10. - _Daniel Forgues_, Mar 25 2018

%H Robert Israel, <a href="/A031324/b031324.txt">Table of n, a(n) for n = 0..10000</a>

%H Brennan Benfield and Michelle Manes, <a href="https://arxiv.org/abs/2202.08986">The Fibonacci Sequence is Normal Base 10</a>, arXiv:2202.08986 [math.NT], 2022.

%F 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

%e 0.011235813213455891442333776109871597...

%p F:= [seq(combinat:-fibonacci(n),n=0..50)]:

%p map(t -> op(ListTools:-Reverse(convert(t,base,10))),F); # _Robert Israel_, Oct 11 2024

%t Flatten[IntegerDigits/@Fibonacci[Range[0,30]]] (* _Harvey P. Dale_, Jan 28 2015 *)

%Y Cf. A000045, A021093, A031325 - A031334.

%Y Cf. A033307, A033308.

%K nonn,cons,base

%O 0,4

%A _Clark Kimberling_