A289975 p-INVERT of the Fibonacci numbers (A000045, including 0), where p(S) = 1 - S - S^2.
0, 1, 1, 4, 7, 18, 37, 85, 183, 407, 888, 1956, 4284, 9409, 20630, 45270, 99289, 217819, 477776, 1048053, 2298912, 5042783, 11061455, 24263687, 53223023, 116746272, 256086074, 561731936, 1232174181, 2702807740, 5928681960, 13004724921, 28526216361
Offset: 0
Links
- Clark Kimberling, Table of n, a(n) for n = 0..1000
- Index entries for linear recurrences with constant coefficients, signature (2, 2, -3, -1)
Programs
Formula
G.f.: (x - x^2)/(1 - 2 x - 2 x^2 + 3 x^3 + x^4).
a(n) = 2*a(n-1) + 2*a(n-2) - 3*a(n-3) - a(n-4).
Comments