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.

A105505 Numbers n such that 5 is the leading digit of the n-th Fibonacci number in decimal representation.

Original entry on oeis.org

5, 10, 29, 34, 53, 58, 77, 96, 101, 120, 125, 139, 144, 163, 168, 187, 192, 206, 211, 230, 235, 254, 273, 278, 297, 302, 321, 340, 345, 364, 369, 388, 407, 412, 431, 436, 455, 474, 479, 498, 503, 522, 541, 546, 565, 570, 584, 589, 608, 613, 632, 637, 651, 656
Offset: 1

Views

Author

Reinhard Zumkeller, Apr 11 2005

Keywords

Comments

A008963(a(n)) = 5; A105515(a(n)) = A105515(a(n) - 1) + 1.

Examples

			a(10)=120: A008963(120) = A000030(A000045(120)) =
A000030(5358359254990966640871840) = 5.
		

Crossrefs

Programs

  • Maple
    ld:= x -> floor(x/10^ilog10(x)):
    select(n -> ld(combinat:-fibonacci(n))=5, [$1..1000]); # Robert Israel, Oct 26 2020
  • Mathematica
    Select[Range[700],First[IntegerDigits[Fibonacci[#]]]==5&] (* Harvey P. Dale, Jul 31 2018 *)
  • PARI
    is(n)=digits(fibonacci(n))[1]==5 \\ Charles R Greathouse IV, Oct 07 2016

Formula

a(n) ~ kn by the equidistribution theorem, where k = log(10)/(log(6) - log(5)) = 12.629253.... - Charles R Greathouse IV, Oct 07 2016