OFFSET
1,2
COMMENTS
Apart from offset same as A002280. - Joerg Arndt, Jan 14 2018
LINKS
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
KEYWORD
base,nonn
AUTHOR
Shyam Sunder Gupta, Aug 15 2002
EXTENSIONS
More terms from Robert Gerbicz, Sep 06 2002
STATUS
approved