A251706 6-step Fibonacci sequence starting with (0,0,0,0,1,0).
0, 0, 0, 0, 1, 0, 1, 2, 4, 8, 16, 31, 62, 123, 244, 484, 960, 1904, 3777, 7492, 14861, 29478, 58472, 115984, 230064, 456351, 905210, 1795559, 3561640, 7064808, 14013632, 27797200, 55138049, 109370888, 216946217, 430330794, 853596780, 1693179928, 3358562656
Offset: 0
Links
- Index entries for linear recurrences with constant coefficients, signature (1,1,1,1,1,1)
Programs
-
Mathematica
LinearRecurrence[Table[1, {6}], {0, 0, 0, 0, 1, 0}, 40] (* Michael De Vlieger, Dec 09 2014 *)
Formula
a(n+6) = a(n) + a(n+1) + a(n+2) + a(n+3) + a(n+4) + a(n+5).
G.f.: x^4*(x-1)/(-1+x+x^2+x^3+x^4+x^5+x^6) . - R. J. Mathar, Mar 28 2025
Comments