A251703 4-step Fibonacci sequence starting with 1,1,0,0.
1, 1, 0, 0, 2, 3, 5, 10, 20, 38, 73, 141, 272, 524, 1010, 1947, 3753, 7234, 13944, 26878, 51809, 99865, 192496, 371048, 715218, 1378627, 2657389, 5122282, 9873516, 19031814, 36685001, 70712613, 136302944, 262732372, 506432930, 976180859
Offset: 0
Links
- Index entries for linear recurrences with constant coefficients, signature (1,1,1,1).
Crossrefs
Programs
-
J
NB. see A251655 for the program and apply it to 1,1,0,0.
-
Mathematica
LinearRecurrence[Table[1, {4}], {1, 1, 0, 0}, 36] (* Michael De Vlieger, Dec 09 2014 *)
Formula
a(n+4) = a(n) + a(n+1) + a(n+2) + a(n+3).
G.f.: (-1+2*x^2+2*x^3)/(-1+x+x^2+x^3+x^4) . - R. J. Mathar, Mar 28 2025