A292399 p-INVERT of (1,2,3,5,8,...) (distinct Fibonacci numbers), where p(S) = (1 - S)^2.
2, 7, 22, 69, 212, 644, 1936, 5772, 17088, 50288, 147232, 429136, 1245888, 3604544, 10396160, 29900992, 85784064, 245548800, 701402624, 1999734016, 5691409408, 16172221440, 45885403136, 130011401216, 367902195712, 1039836672000, 2935713865728, 8279592292352
Offset: 0
Links
- Clark Kimberling, Table of n, a(n) for n = 0..1000
- Index entries for linear recurrences with constant coefficients, signature (4,0,-8,-4)
Programs
Formula
G.f.: -(((1 + x) (-2 + 3 x + 3 x^2))/(-1 + 2 x + 2 x^2)^2).
a(n) = 4*a(n-1) - 8*a(n-3) - 4*a(n-4) for n >= 5.
a(n) = Sum_{k=0..n+1} (k+1) * A155112(n+1,k). - Alois P. Heinz, Sep 29 2022
Comments