A200864 Expansion of 1/((1+x)*(1-3*x)*(1-5*x)).
1, 7, 42, 230, 1211, 6237, 31732, 160300, 806421, 4046867, 20278622, 101525970, 508028431, 2541337897, 12710276712, 63562145240, 317843011241, 1589311911327, 7946850122002, 39735122306110, 198678226618851, 993398978359157, 4967018427590492, 24835162745336580
Offset: 0
Links
- Bruno Berselli, Table of n, a(n) for n = 0..1000.
- Index entries for linear recurrences with constant coefficients, signature (7,-7,-15).
Programs
-
Magma
m:=24; R
:=PowerSeriesRing(Integers(), m); Coefficients(R!(1/((1+x)*(1-3*x)*(1-5*x)))); -
Mathematica
CoefficientList[Series[1/((1+x)(1-3x)(1-5x)), {x, 0, 24}], x] LinearRecurrence[{7,-7,-15},{1,7,42},30] (* Harvey P. Dale, May 26 2015 *)
-
Maxima
makelist(coeff(taylor(1/((1+x)*(1-3*x)*(1-5*x)), x, 0, n), x, n), n, 0, 23);
-
PARI
Vec(1/((1+x)*(1-3*x)*(1-5*x))+O(x^24))