login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A209277
O.g.f. satisfies: A(x) = Sum_{n>=0} (n+3)^n * x^n * A((n+3)*x)^n/n! * exp(-(n+3)*x*A((n+3)*x)).
3
1, 1, 8, 321, 57879, 45643415, 154158595175, 2190765237132015, 129241431881731600186, 31339180791153421540163500, 31011964321205837200260130287298, 124581202469689320858858825068619255535, 2023924731754579903607034623889070335771466703
OFFSET
0,3
COMMENTS
Compare to the LambertW identity:
Sum_{n>=0} (n+3)^n * x^n * G(x)^n/n! * exp(-(n+3)*x*G(x)) = 1/(1 - x*G(x)).
EXAMPLE
O.g.f.: A(x) = 1 + x + 8*x^2 + 321*x^3 + 57879*x^4 + 45643415*x^5 +...
where
A(x) = exp(-3*x*A(3*x)) + 4*x*A(4*x)*exp(-4*x*A(4*x)) + 5^2*x^2*A(5*x)^2/2!*exp(-5*x*A(5*x)) + 6^3*x^3*A(6*x)^3/3!*exp(-6*x*A(6*x)) + 7^4*x^4*A(7*x)^4/4!*exp(-7*x*A(7*x)) + 8^5*x^5*A(8*x)^5/5!*exp(-8*x*A(8*x)) +...
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+3)^k*x^k*subst(A, x, (k+3)*x)^k/k!*exp(-(k+3)*x*subst(A, x, (k+3)*x)+x*O(x^n)))); polcoeff(A, n)}
for(n=0, 25, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jan 15 2013
STATUS
approved