A251672 8-step Fibonacci sequence starting with 0,0,0,0,0,0,1,0.
0, 0, 0, 0, 0, 0, 1, 0, 1, 2, 4, 8, 16, 32, 64, 127, 254, 507, 1012, 2020, 4032, 8048, 16064, 32064, 64001, 127748, 254989, 508966, 1015912, 2027792, 4047536, 8079008, 16125952, 32187903, 64248058, 128241127, 255973288, 510930664, 1019833536, 2035619536
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, 0, 0, 0, 1, 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^6*(x-1)/(-1+x+x^2+x^3+x^4+x^5+x^6+x^7+x^8) . - R. J. Mathar, Mar 28 2025
Comments