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!)
A218673 O.g.f. satisfies: A(x) = Sum_{n>=0} n^n * x^n*A(n*x)^(2*n)/n! * exp(-n*x*A(n*x)^2). 4
1, 1, 3, 20, 209, 3173, 67292, 1970761, 79764057, 4490097388, 354111363537, 39360693851404, 6193012446752244, 1383433132321835172, 439684769985895688173, 199116777197880585373014, 128631139424158036273736167, 118640007280899188486618513612 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Compare to the LambertW identity:
Sum_{n>=0} n^n * x^n * G(x)^n/n! * exp(-n*x*G(x)) = 1/(1 - x*G(x)).
LINKS
EXAMPLE
O.g.f.: A(x) = 1 + x + 3*x^2 + 20*x^3 + 209*x^4 + 3173*x^5 + 67292*x^6 +...
where
A(x) = 1 + x*A(x)^2*exp(-x*A(x)^2) + 2^2*x^2*A(2*x)^4/2!*exp(-2*x*A(2*x)^2) + 3^3*x^3*A(3*x)^6/3!*exp(-3*x*A(3*x)^2) + 4^4*x^4*A(4*x)^8/4!*exp(-4*x*A(4*x)^2) + 5^5*x^5*A(5*x)^10/5!*exp(-5*x*A(5*x)^2) +...
simplifies to a power series in x with integer coefficients.
PROG
(PARI) {a(n)=local(A=1+x); for(i=1, n, A=sum(k=0, n, k^k*x^k*subst(A^2, x, k*x)^k/k!*exp(-k*x*subst(A^2, x, k*x)+x*O(x^n)))); polcoeff(A, n)}
for(n=0, 25, print1(a(n), ", "))
CROSSREFS
Sequence in context: A081209 A196560 A257476 * A230478 A014068 A006963
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 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)