A289781 p-INVERT of the positive Fibonacci numbers (A000045), where p(S) = 1 - S - S^2.
1, 3, 9, 27, 80, 237, 701, 2073, 6129, 18120, 53569, 158367, 468181, 1384083, 4091760, 12096453, 35760689, 105719157, 312537041, 923951760, 2731474161, 8075043963, 23872213729, 70573310907, 208635540400, 616788246957, 1823408134821, 5390532719313
Offset: 0
Links
- Clark Kimberling, Table of n, a(n) for n = 0..1000
- Index entries for linear recurrences with constant coefficients, signature (3, 1, -3, -1)
Programs
Formula
G.f.: (1 - x^2)/(1 - 3 x - x^2 + 3 x^3 + x^4).
a(n) = 3*a(n-1) + a(n-2) - 3*a(n-3) - a(n-4).
Comments