OFFSET
1,3
EXAMPLE
E.g.f.: A(x) = x + x^2/2! + 2*x^3/3! + 5*x^4/4! + 19*x^5/5! + 90*x^6/6! +...
where
exp(-A(x)) = 1 - x + x^4/4! - x^9/9! + x^16/16! - x^25/25! + x^36/36! +...
PROG
(PARI) {a(n) = n!*polcoeff(-log(sum(m=0, sqrtint(n+1), (-x)^(m^2)/(m^2)!+x*O(x^n))), n)}
for(n=1, 25, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jan 31 2012
STATUS
approved