login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A174493 a(n) = coefficient of x^n/(n-1)! in the 3-fold iteration of x*exp(x). 4
1, 3, 15, 102, 861, 8598, 98547, 1270160, 18138601, 283754826, 4818884319, 88186786020, 1728395865021, 36091833338174, 799408841413051, 18708996086926272, 461095012437724881, 11931573394008790290 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = Sum_{k=0..n, j=0..n-k} C(n,k)*C(n-k,j)*(k+1)^j*(k+1+j)^(n-k-j).
O.g.f.: Sum_{n>=1} A080108(n)*x^n/(1-n*x)^n, where A080108(n) = [x^n/(n-1)! ] E(E(x)) and E(x) = x*exp(x).
EXAMPLE
E.g.f.: x + 3*x^2 + 15*x^3/2! + 102*x^4/3! + 861*x^5/4! +...
PROG
(PARI) {a(n)=local(F=x, xEx=x*exp(x+x*O(x^n))); for(i=1, 3, F=subst(F, x, xEx)); (n-1)!*polcoeff(F, n)}
(PARI) {a(n)=sum(k=0, n-1, binomial(n-1, k)*sum(j=0, n-1-k, binomial(n-1-k, j)*(k+1)^j*(k+1+j)^(n-1-k-j)))}
CROSSREFS
Sequence in context: A348793 A135903 A185753 * A354122 A318618 A123184
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Apr 17 2010
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified August 8 17:42 EDT 2024. Contains 375023 sequences. (Running on oeis4.)