A107247 Sum of squares of nonacci numbers (Fibonacci 9-step numbers).
0, 0, 0, 0, 0, 0, 0, 1, 2, 6, 22, 86, 342, 1366, 5462, 21846, 87382, 348503, 1390944, 5552544, 22166320, 88491056, 353269040, 1410299184, 5630100784, 22476064048, 89727075632, 358201316657, 1429983219018, 5708667195022, 22789694921422
Offset: 0
Links
- Eric Weisstein's World of Mathematics, Fibonacci n-Step Number.
- Index entries for linear recurrences with constant coefficients, signature (3, 2, 4, 8, 15, 31, 62, 124, 248, -522, -24, -38, -32, 120, -26, -68, -138, -160, 392, 16, 30, 22, -68, 0, 16, 50, 58, -124, 0, -6, -8, 14, 0, 0, -6, -12, 18, 0, 0, 1, -1, 0, 0, 0, 1, -1).
Programs
-
Mathematica
Accumulate[LinearRecurrence[{1,1,1,1,1,1,1,1,1},{0,0,0,0,0,0,0,0,1},31]^2] (* Ray Chandler, Aug 02 2015 *)
Formula
a(n) = F_9(0)^2 + F_9(1)^2 + ... F_9(n)^2, where F_9(n) = A104144(n).
Comments