A251742 8-step Fibonacci sequence starting with 0,0,0,1,0,0,0,0.
0, 0, 0, 1, 0, 0, 0, 0, 1, 2, 4, 8, 15, 30, 60, 120, 240, 479, 956, 1908, 3808, 7601, 15172, 30284, 60448, 120656, 240833, 480710, 959512, 1915216, 3822831, 7630490, 15230696, 30400944, 60681232, 121121631, 241762552, 482565592, 963215968, 1922609105
Offset: 0
Links
- G. C. Greubel, Table of n, a(n) for n = 0..1000
- Index entries for linear recurrences with constant coefficients, signature (1,1,1,1,1,1,1,1)
Crossrefs
Programs
-
Mathematica
LinearRecurrence[Table[1, {8}], {0, 0, 0, 1, 0, 0, 0, 0}, 43] (* Michael De Vlieger, Dec 09 2014 *)
Formula
a(n+8) = a(n)+a(n+1)+a(n+2)+a(n+3)+a(n+4)+a(n+5)+a(n+6)+a(n+7).
G.f.: x^3*(-1+x+x^2+x^3+x^4)/(-1+x+x^2+x^3+x^4+x^5+x^6+x^7+x^8) . - R. J. Mathar, Mar 28 2025