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!)
A218674 O.g.f. satisfies: A(x) = Sum_{n>=0} n^n * x^n*A(n*x)^(3*n)/n! * exp(-n*x*A(n*x)^3). 4
1, 1, 4, 34, 455, 8710, 230077, 8285224, 407456797, 27587687551, 2596034329278, 342275007167359, 63606742005546232, 16730509857101195808, 6246818082857455197662, 3317816101992338134691233, 2510420393373091580780786808, 2709148467943025007607468405672 (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 + 4*x^2 + 34*x^3 + 455*x^4 + 8710*x^5 + 230077*x^6 +...
where
A(x) = 1 + x*A(x)^3*exp(-x*A(x)^3) + 2^2*x^2*A(2*x)^6/2!*exp(-2*x*A(2*x)^3) + 3^3*x^3*A(3*x)^9/3!*exp(-3*x*A(3*x)^3) + 4^4*x^4*A(4*x)^12/4!*exp(-4*x*A(4*x)^3) + 5^5*x^5*A(5*x)^15/5!*exp(-5*x*A(5*x)^3) +...
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^3, x, k*x)^k/k!*exp(-k*x*subst(A^3, x, k*x)+x*O(x^n)))); polcoeff(A, n)}
for(n=0, 25, print1(a(n), ", "))
CROSSREFS
Sequence in context: A052629 A151919 A277637 * A321264 A234291 A193099
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 23 09:48 EDT 2024. Contains 371905 sequences. (Running on oeis4.)