OFFSET
1,3
EXAMPLE
E.g.f.: A(x) = x + x^2/2! + 3*x^3/3! + 18*x^4/4! + 171*x^5/5! + 2283*x^6/6! +...
where the derivative of the e.g.f. begins:
A'(x) = 1 + x + 3*x^2/2! + 18*x^3/3! + 171*x^4/4! + 2283*x^5/5! +...
Related expansions.
A(A(x)) = x + 2*x^2/2! + 9*x^3/3! + 69*x^4/4! + 777*x^5/5! + 11802*x^6/6! + 229047*x^7/7! + 5472600*x^8/8! +...
A(A(A(x))) = x + 3*x^2/2! + 18*x^3/3! + 171*x^4/4! + 2283*x^5/5! +...
PROG
(PARI) {a(n)=local(A=x); for(i=1, n, A=intformal(1+subst(A, x, subst(A, x, A+O(x^(n+1)))))); n!*polcoeff(A, n)}
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jul 15 2011
STATUS
approved