login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A174495
a(n) = coefficient of x^n/(n-1)! in the 5-fold iteration of x*exp(x).
4
1, 5, 45, 575, 9425, 187455, 4367245, 116322645, 3479863345, 115353325835, 4192244804645, 165607074622665, 7060695856372105, 322973775761169135, 15770136907303728205, 818373668098974428885, 44963322539225628107105
OFFSET
1,2
FORMULA
O.g.f.: Sum_{n>=1} A174494(n)*x^n/(1-n*x)^n, where A174494(n) = [x^n/(n-1)! ] E(E(E(E(x)))) and E(x) = x*exp(x).
EXAMPLE
E.g.f.: x + 5*x^2 + 45*x^3/2! + 575*x^4/3! + 9425*x^5/4! +...
PROG
(PARI) {a(n)=local(F=x, xEx=x*exp(x+x*O(x^n))); for(i=1, 5, F=subst(F, x, xEx)); (n-1)!*polcoeff(F, n)}
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Apr 17 2010
STATUS
approved