login
A181065
a(n)=(F(n)-sumofdigits(F(n)))/9, where F(n) = A000045(n).
1
0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 5, 8, 15, 25, 40, 67, 107, 175, 285, 463, 749, 1214, 1966, 3181, 5149, 8334, 13486, 21821, 35310, 57134, 92447, 149582, 242031, 391616, 633650, 1025270, 1658925, 2684198, 4343125, 7027327, 11370459, 18397790, 29768250
OFFSET
0,9
LINKS
EXAMPLE
a(22)=(F(22)-sumofdigits(F(22)))/9=(17711-17)/9=1966
MATHEMATICA
f[n_] := Block[{fib = Fibonacci@n}, (fib - Plus @@ IntegerDigits@ fib)/9]; Array[f, 43, 0]
(#-Total[IntegerDigits[#]])/9&/@Fibonacci[Range[0, 50]] (* Harvey P. Dale, Mar 11 2023 *)
CROSSREFS
Sequence in context: A371992 A066372 A058519 * A282239 A191792 A151518
KEYWORD
nonn,base
AUTHOR
EXTENSIONS
Corrected index & offset, added the Mathematica coding and extended the sequence Robert G. Wilson v, Oct 02 2010
STATUS
approved