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!)
A219345 O.g.f. satisfies: A(x) = Sum_{n>=0} 3*(n+3)^(n-1) * (n*x)^n * A(n*x)^n/n! * exp(-(n+3)*n*x*A(n*x)). 1
1, 3, 27, 579, 20175, 1040841, 76289391, 7835014803, 1126950503895, 227980114864785, 65140785692441331, 26367726770770632279, 15152326633140931387863, 12381287437737118684516329, 14402892135028851541909453959, 23874983932956218191360201222107 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Compare the g.f. to the LambertW identity:
1 = Sum_{n>=0} 3*(n+3)^(n-1) * exp(-(n+3)*x) * x^n/n!.
LINKS
EXAMPLE
O.g.f.: A(x) = 1 + 3*x + 27*x^2 + 579*x^3 + 20175*x^4 + 1040841*x^5 +...
where
A(x) = 1 + 3*4^0*1^1*x*A(x)*exp(-4*1*x*A(x)) + 3*5^1*2^2*x^2*A(2*x)^2*exp(-5*2*x*A(2*x))/2! + 3*6^2*3^3*x^3*A(3*x)^3*exp(-6*3*x*A(3*x))/3! + 3*7^3*4^4*x^4*A(4*x)^4*exp(-7*4*x*A(4*x))/4! + 3*8^4*5^5*x^5*A(5*x)^5*exp(-8*5*x*A(5*x))/5! +...
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, 3*(k+3)^(k-1)*k^k*x^k*subst(A, x, k*x)^k/k!*exp(-(k+3)*k*x*subst(A, x, k*x)+x*O(x^n)))); polcoeff(A, n)}
for(n=0, 25, print1(a(n), ", "))
CROSSREFS
Sequence in context: A370578 A062496 A222844 * A185037 A185237 A099084
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Nov 18 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 05:19 EDT 2024. Contains 371782 sequences. (Running on oeis4.)