login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A073549
Number of Fibonacci numbers F(k), k <= 10^n, which end in 6.
3
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,2
COMMENTS
Apart from offset same as A002280. - Joerg Arndt, Jan 14 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
EXAMPLE
a(2)=6 because there are 6 Fibonacci numbers up to Fibonacci(10^2) which end in 6.
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 *)
CROSSREFS
Sequence in context: A137120 A002280 A073548 * A119087 A119212 A068643
KEYWORD
base,nonn
AUTHOR
Shyam Sunder Gupta, Aug 15 2002
EXTENSIONS
More terms from Robert Gerbicz, Sep 06 2002
STATUS
approved