A073549 Number of Fibonacci numbers F(k), k <= 10^n, which end in 6.
0, 6, 66, 666, 6666, 66666, 666666, 6666666, 66666666, 666666666, 6666666666, 66666666666, 666666666666, 6666666666666, 66666666666666, 666666666666666, 6666666666666666, 66666666666666666, 666666666666666666, 6666666666666666666, 66666666666666666666, 666666666666666666666, 6666666666666666666666, 66666666666666666666666
Offset: 1
Examples
a(2)=6 because there are 6 Fibonacci numbers up to Fibonacci(10^2) which end in 6.
Links
- Index entries for linear recurrences with constant coefficients, signature (11,-10).
Programs
-
Maple
A073549 := [seq((10^n - 10)/15, n=1..100)]; # Muniru A Asiru, Jan 14 2018
-
Mathematica
LinearRecurrence[{11,-10},{0,6},30] (* or *) Table[(10^n-10)/15,{n,30}] (* Harvey P. Dale, Sep 08 2018 *)
Formula
a(n) = (10^n - 10)/15. - Robert Gerbicz, Sep 06 2002
a(n) = a(n-1) + 6*10^(n-2), with a(1)=0. - Vincenzo Librandi, Aug 08 2010
Extensions
More terms from Robert Gerbicz, Sep 06 2002
Comments