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!)
A216247 O.g.f. satisfies: A(x) = Sum_{n>=0} n^n * x^n * A(n^2*x^2)^n/n! * exp(-n*x*A(n^2*x^2)). 1
1, 1, 1, 2, 15, 77, 354, 2509, 19369, 146840, 1321773, 13466872, 151177886, 1827144180, 23686530621, 335038346222, 4922031402993, 75768551557262, 1240672912146220, 21264349760865217, 384135346377854363, 7286741020161077248, 145190876484745421540 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
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
G.f.: A(x) = 1 + x + x^2 + 2*x^3 + 15*x^4 + 77*x^5 + 354*x^6 + 2509*x^7 +...
where
A(x) = 1 + x*A(x^2)*exp(-x*A(x^2)) + 2^2*x^2*A(2^2*x^2)^2/2!*exp(-2*x*A(2^2*x^2)) + 3^3*x^3*A(3^2*x^2)^3/3!*exp(-3*x*A(3^2*x^2)) + 4^4*x^4*A(4^2*x^2)^4/4!*exp(-4*x*A(4^2*x^2)) + 5^5*x^5*A(5^2*x^2)^5/5!*exp(-5*x*A(5^2*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, x, k^2*x^2)^k/k!*exp(-k*x*subst(A, x, k^2*x^2)+x*O(x^n)))); polcoeff(A, n)}
for(n=0, 30, print1(a(n), ", "))
CROSSREFS
Sequence in context: A344215 A102289 A041243 * A291972 A056079 A266622
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Mar 14 2013
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 March 28 20:05 EDT 2024. Contains 371254 sequences. (Running on oeis4.)