OFFSET
0,11
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..1000
INRIA Algorithms Project, Encyclopedia of Combinatorial Structures 229
Index entries for linear recurrences with constant coefficients, signature (0,0,0,1,1,1,0,0,-1,-1,-1,0,0,0,1).
MAPLE
seq(coeff(series(1/mul(1-x^j, j=4..6), x, n+1), x, n), n = 0..90); # G. C. Greubel, Sep 09 2019
MATHEMATICA
CoefficientList[Series[1/((1-x^4)(1-x^5)(1-x^6)), {x, 0, 90}], x] (* Vincenzo Librandi, Jun 23 2013 *)
PROG
(PARI) Vec(1/(1-x^4)*(1-x^5)*(1-x^6)+O(x^90)) \\ Charles R Greathouse IV, Sep 26 2012
(Magma) R<x>:=PowerSeriesRing(Integers(), 90); Coefficients(R!( 1/&*[1-x^j: j in [4..6]] )); // G. C. Greubel, Sep 09 2019
(Sage)
def A008682_list(prec):
P.<x> = PowerSeriesRing(ZZ, prec)
return P(1/prod(1-x^j for j in (4..6))).list()
A008682_list(90) # G. C. Greubel, Sep 09 2019
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
Typo in name fixed by Vincenzo Librandi, Jun 23 2013
More terms added from b-file. - G. C. Greubel, Sep 09 2019
STATUS
approved