A201865 Expansion of 1/((1-3*x)*(1+7*x)).
1, -4, 37, -232, 1705, -11692, 82573, -575824, 4037329, -28241620, 197750389, -1384075576, 9689060473, -67821828988, 474757585885, -3323288752288, 23263064312737, -162841321048996, 1139889634763461, -7979226281082760, 55854587454363721, -390982101720192844
Offset: 0
Links
- Bruno Berselli, Table of n, a(n) for n = 0..1000
- Index entries for linear recurrences with constant coefficients, signature (-4,21).
Programs
-
Magma
m:=22; R
:=PowerSeriesRing(Integers(), m); Coefficients(R!(1/((1-3*x)*(1+7*x)))); -
Mathematica
CoefficientList[Series[1/((1-3*x)*(1+7*x)), {x, 0, 22}], x]
-
Maxima
makelist(coeff(taylor(1/((1-3*x)*(1+7*x)), x, 0, n), x, n), n, 0, 21);
-
PARI
Vec(1/((1-3*x)*(1+7*x))+O(x^22))
Comments