A291264 p-INVERT of (0,1,0,1,0,1,...), where p(S) = (1 - 2 S)^2.
4, 12, 36, 104, 292, 804, 2180, 5840, 15492, 40764, 106532, 276792, 715556, 1841748, 4722180, 12066208, 30737924, 78088812, 197892388, 500374024, 1262618148, 3180066180, 7995639940, 20071580784, 50312160388, 125942854044, 314865132324, 786254598872
Offset: 0
Links
- Clark Kimberling, Table of n, a(n) for n = 0..1000
- Index entries for linear recurrences with constant coefficients, signature (4, -2, -4, -1)
Programs
-
Mathematica
z = 60; s = x/(1 - x^2); p = (1 - 2 s)^2; Drop[CoefficientList[Series[s, {x, 0, z}], x], 1] (* A000035 *) u = Drop[CoefficientList[Series[1/p, {x, 0, z}], x], 1] (* A291264 *) u/4 (A054447 *)
-
PARI
Vec(4*(1 - x - x^2) / (1 - 2*x - x^2)^2 + O(x^40)) \\ Colin Barker, Aug 26 2017
Formula
G.f.: -((4 (-1 + x + x^2))/(-1 + 2 x + x^2)^2).
a(n) = 4*a(n-1) - 2*a(n-2) - 4*a(n-3) - a(n-4) for n >= 5.
a(n) - 4*A054447(n) for n >= 0.
a(n) = ((1-sqrt(2))^(1+n)*(2-3*sqrt(2) + 2*n) + (1+sqrt(2))^(1+n)*(2+3*sqrt(2) + 2*n)) / 4. - Colin Barker, Aug 26 2017
Comments