A292329 p-INVERT of the Fibonacci sequence (A000045), where p(S) = 1 - S^3.
0, 0, 1, 3, 9, 23, 57, 138, 332, 798, 1920, 4626, 11157, 26925, 64997, 156921, 378861, 914692, 2208324, 5331444, 12871324, 31074180, 75019701, 181113471, 437246349, 1055605659, 2548456957, 6152518758, 14853493752, 35859505946, 86572506132, 209004519918
Offset: 0
Links
- Clark Kimberling, Table of n, a(n) for n = 0..1000
- Index entries for linear recurrences with constant coefficients, signature (3, 0, -4, 0, 3, 1)
Programs
Formula
G.f.: -(x^2/((-1 + 2 x + x^2) (1 - x - x^2 + x^3 + x^4))).
a(n) = 3*a(n-1) - 4*a(n-3) + 3*a(n-5) + a(n-6) for n >= 7.
Comments