A251764 10-step Fibonacci sequence starting with 0,0,0,1,0,0,0,0,0,0.
0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 2, 4, 8, 15, 30, 60, 120, 240, 480, 960, 1919, 3836, 7668, 15328, 30641, 61252, 122444, 244768, 489296, 978112, 1955264, 3908609, 7813382, 15619096, 31222864, 62415087, 124768922, 249415400, 498586032, 996682768, 1992387424
Offset: 0
Links
- Index entries for linear recurrences with constant coefficients, signature (1,1,1,1,1,1,1,1,1,1).
Crossrefs
Programs
-
Mathematica
LinearRecurrence[Table[1, {10}], {0, 0, 0, 1, 0, 0, 0, 0, 0, 0}, 45] (* Michael De Vlieger, Dec 09 2014 *)
Formula
a(n+10) = a(n)+a(n+1)+a(n+2)+a(n+3)+a(n+4)+a(n+5)+a(n+6)+a(n+7)+a(n+8) +a(n+9).
G.f.: x^3*(-1+x+x^2+x^3+x^4+x^5+x^6)/(-1+x+x^2+x^3+x^4+x^5+x^6+x^7+x^8+x^9+x^10) . - R. J. Mathar, Mar 28 2025