OFFSET
0,2
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..1000
G. E. Andrews, P. Paule and A. Riese, MacMahon's Partition Analysis VIII: Plane partition diamonds, Advances Applied Math., 27 (2001), 231-242.
Index entries for linear recurrences with constant coefficients, signature (2,2,-4,-5,4,11,-4,-13,1,12,0,-9,5,6,-11,-9,15,14, -14,-15,9,11,-6,-5,9,0,-12,-1,13,4,-11,-4,5,4,-2,-2,1).
MATHEMATICA
CoefficientList[Series[(1+x^2)/((1-x)^2(1-x^2)^2(1-x^3)^2 (1-x^8) (1-x^9)*(1-x^10)), {x, 0, 50}], x] (* Harvey P. Dale, Apr 16 2011 *)
PROG
(Magma) R<x>:=PowerSeriesRing(Integers(), 50); Coefficients(R!( (1+x^2)/((1-x)^2(1-x^2)^2(1-x^3)^2 (1-x^8) (1-x^9)*(1-x^10)) )); // G. C. Greubel, Aug 16 2022
(SageMath)
def A069956_list(prec):
P.<x> = PowerSeriesRing(ZZ, prec)
return P( (1+x^2)/((1-x)^2(1-x^2)^2(1-x^3)^2 (1-x^8) (1-x^9)*(1-x^10)) ).list()
A069956_list(50) # G. C. Greubel, Aug 16 2022
CROSSREFS
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, May 05 2002
STATUS
approved