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!)
A195737 E.g.f.: x = Sum_{n>=1} a(n)*x^n/n! * exp(-n*(n+1)/2*x). 3
1, 2, 15, 256, 7935, 392526, 28498246, 2863702080, 381411964485, 65129544696250, 13888321460879976, 3620285828450155008, 1133432920326577483795, 419923892646668363653350, 181795302703808044653240000, 90971411268941227901619966976 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Compare e.g.f. to: x = Sum_{n>=1} n^(n-1)*x^n/n! * exp(-n*x), which generates coefficients for the series reversion of x*exp(-x).
LINKS
FORMULA
G.f.: x = Sum_{n>=1} a(n)*x^n/(n*(1 + n*(n+1)/2*x)^n).
EXAMPLE
x = x*exp(-x) + 2*x^2/2!*exp(-3*x) + 15*x^3/3!*exp(-6*x) + 256*x^4/4!*exp(-10*x) + 7935*x^5/5!*exp(-15*x) +...+ a(n)*x^n/n!*exp(-n*(n+1)/2*x) +...
The coefficients a(n) also satisfy:
x = x/(1+x) + 2*x^2/(2*(1+3*x)^2) + 15*x^3/(3*(1+6*x)^3) + 256*x^4/(4*(1+10*x)^4) + 7935*x^5/(5*(1+15*x)^5) +...+ a(n)*x^n/(n*(1+n*(n+1)/2*x)^n) +...
PROG
(PARI) {a(n)=if(n<1, 0, n!*polcoeff(x-sum(m=1, n-1, a(m)*x^m/m!*exp(-m*(m+1)/2*x+x*O(x^n))), n))}
(PARI) {a(n)=if(n<1, 0, n*polcoeff(x-sum(m=1, n-1, a(m)*x^m/(m*(1+m*(m+1)/2*x+x*O(x^n))^m)), n))}
CROSSREFS
Sequence in context: A203310 A102555 A264907 * A192567 A354980 A143886
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Sep 30 2011
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 July 20 09:46 EDT 2024. Contains 374445 sequences. (Running on oeis4.)