OFFSET
0,4
EXAMPLE
G.f.: A(x) = 1 + x + x^2 + 2*x^3 + 2*x^4 + 4*x^5 + 5*x^6 + 8*x^7 ...
where
A(x) = 1 + x/(1-x) + x^3/((1-x)*(1-x^2)^2) + x^6/((1-x)*(1-x^2)^2*(1-x^3)^3) + x^10/((1-x)*(1-x^2)^2*(1-x^3)^3*(1-x^4)^4) +...
PROG
(PARI) {a(n)=polcoeff(sum(m=0, n, x^(m*(m+1)/2)/prod(k=1, m, (1-x^k +x*O(x^n))^k)), n)}
for(n=0, 60, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Feb 04 2012
STATUS
approved