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.
%I A031324 #31 Oct 11 2024 16:11:38 %S A031324 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 A031324 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 A031324 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 A031324 Decimal digits of successive Fibonacci numbers. %C A031324 Decimal concatenation of Fibonacci numbers in base 10. - _Daniel Forgues_, Mar 25 2018 %H A031324 Robert Israel, <a href="/A031324/b031324.txt">Table of n, a(n) for n = 0..10000</a> %H A031324 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 A031324 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 A031324 0.011235813213455891442333776109871597... %p A031324 F:= [seq(combinat:-fibonacci(n),n=0..50)]: %p A031324 map(t -> op(ListTools:-Reverse(convert(t,base,10))),F); # _Robert Israel_, Oct 11 2024 %t A031324 Flatten[IntegerDigits/@Fibonacci[Range[0,30]]] (* _Harvey P. Dale_, Jan 28 2015 *) %Y A031324 Cf. A000045, A021093, A031325 - A031334. %Y A031324 Cf. A033307, A033308. %K A031324 nonn,cons,base %O A031324 0,4 %A A031324 _Clark Kimberling_