OFFSET
0,3
EXAMPLE
E.g.f.: A(x) = 1 + x + 2*x^2/2! + 9*x^3/3! + 53*x^4/4! + 464*x^5/5! + 4687*x^6/6! +...
Related expansions.
log(A(x)) = x + x^2/2! + 5*x^3/3! + 23*x^4/4! + 223*x^5/5! + 1933*x^6/6! +...
log(A(x))/A(x) = x - x^2/2! + 2*x^3/3! - 9*x^4/4! + 53*x^5/5! - 464*x^6/6! +...
PROG
(PARI) {a(n)=local(A=1+x); for(i=1, n, A=exp(A*intformal(subst(A, x, -x)+x*O(x^n)))); n!*polcoeff(A, n)}
for(n=0, 30, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Dec 07 2013
STATUS
approved