A128823 a(n) is the sum of all n-digit Fibonacci numbers.
20, 212, 2351, 15127, 178707, 1981891, 21979508, 141422324, 1670731762, 18528699171, 205486422643, 2278879348244, 14662949395604, 173224810531570, 1921092587268915, 21305243270489635, 236278768562654900
Offset: 1
Examples
If n=1 then the sum of the Fibonacci numbers 1+1+2+3+5+8 = 20 which is the first term in the sequence. If n=2 then the sum of the Fibonacci numbers 13+21+34+55+89 = 212 which is the second term in the sequence.
Links
- Robert G. Wilson v, Table of n, a(n) for n = 1..100
- C. Valente, PlanetMath.org, List of Fibonacci Numbers
- Wikipedia, Fibonacci Numbers.
Programs
-
Mathematica
f[n_] := Plus @@ Select[ Fibonacci /@ Range[ Floor[(n - 1)*Log[ GoldenRatio, 10] + 1], Floor[ n*Log[ GoldenRatio, 10] + 3]], Floor@ Log[10, # ] + 1 == n &]; Array[f, 18] (* Robert G. Wilson v, May 26 2007 *)
Formula
Extensions
More terms from Robert G. Wilson v, May 26 2007
Comments