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!)
A218677 O.g.f.: Sum_{n>=0} n^n * (1+n*x)^(2*n) * x^n/n! * exp(-n*x*(1+n*x)^2). 3
1, 1, 3, 14, 79, 516, 3802, 30668, 268815, 2522594, 25201736, 266014607, 2953171684, 34326755191, 416313253084, 5251970372080, 68737673434847, 931207966502919, 13031639620371226, 188051624603419973, 2793741995189126920, 42668132798523737471, 669061042470049870917 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Compare o.g.f. to the curious identity:
1/(1-x^2) = Sum_{n>=0} (1+n*x)^n * x^n/n! * exp(-x*(1+n*x)).
LINKS
EXAMPLE
O.g.f.: A(x) = 1 + x + 3*x^2 + 14*x^3 + 79*x^4 + 516*x^5 + 3802*x^6 +...
where
A(x) = 1 + (1+x)^2*x*exp(-x*(1+x)^2) + 2^2*(1+2*x)^4*x^2/2!*exp(-2*x*(1+2*x)^2) + 3^3*(1+3*x)^6*x^3/3!*exp(-3*x*(1+3*x)^2) + 4^4*(1+4*x)^8*x^4/4!*exp(-4*x*(1+4*x)^2) + 5^5*(1+5*x)^10*x^5/5!*exp(-5*x*(1+5*x)^2) +...
simplifies to a power series in x with integer coefficients.
PROG
(PARI) {a(n)=local(A=1+x); A=sum(k=0, n, k^k*(1+k*x)^(2*k)*x^k/k!*exp(-k*x*(1+k*x)^2+x*O(x^n))); polcoeff(A, n)}
for(n=0, 30, print1(a(n), ", "))
CROSSREFS
Sequence in context: A003169 A086621 A020089 * A353079 A305128 A027614
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Nov 04 2012
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 April 19 16:52 EDT 2024. Contains 371794 sequences. (Running on oeis4.)