OFFSET
0,3
FORMULA
EXAMPLE
G.f.: A(x) = 1 + x + 2*x^2 + 5*x^3 + 22*x^4 + 150*x^5 + 1469*x^6 +...
where
A(x) = 1/((1-x)*(1-x^2)*(1-x^3)^3*(1-x^4)^16*(1-x^5)^125*(1-x^6)^1296*...)
also
log(A(x)) = x + 3*x^2/2 + 10*x^3/3 + 67*x^4/4 + 626*x^5/5 + 7788*x^6/6 + 117650*x^7/7 + 2097219*x^8/8 + 43046731*x^9/9 + 1000000628*x^10/10 +...+ A262843(n)*x^n/n +...
PROG
(PARI) {a(n)=polcoeff(prod(k=1, n, (1 - x^k +x*O(x^n))^(-k^(k-2))), n)}
for(n=0, 30, print1(a(n), ", "))
(PARI) {a(n)=polcoeff(exp(sum(m=1, n+1, sumdiv(m, d, d^d)*x^m/m) +x*O(x^n)), n)}
for(n=0, 30, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Oct 03 2015
STATUS
approved