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!)
A143768 E.g.f. satisfies A(x) = exp(x + x^2*A(x)^2). 16

%I #21 Aug 17 2023 08:15:24

%S 1,1,3,19,169,2041,30811,560827,11957905,292399345,8069068531,

%T 248093713891,8411093625529,311750189715433,12541478207183563,

%U 544268121894899851,25345579186001847841,1260715969618060192225

%N E.g.f. satisfies A(x) = exp(x + x^2*A(x)^2).

%H Seiichi Manyama, <a href="/A143768/b143768.txt">Table of n, a(n) for n = 0..378</a>

%F Expansion of [LambertW(-2*x^2*exp(2x))/(-2*x^2)]^(1/2).

%F E.g.f.: A(x) = Sum_{m>=0} (2n+1)^(n-1) * exp((2n+1)*x) * x^(2n)/n! .

%F From _Paul D. Hanna_, Jul 11 2009: (Start)

%F a(n) = n! * Sum_{k=0..n} C(k,n-k) * (2*(n-k)+1)^(k-1)/k!.

%F Let A(x)^m = Sum_{n>=0} a(n,m)*x^n/n!, then

%F a(n,m) = n! * Sum_{k=0..n} C(k,n-k) * m*(2*(n-k)+m)^(k-1)/k!.

%F ...

%F If log(A(x)) = Sum_{n>=1} L(n)*x^n/n!, then

%F L(n) = n! * Sum_{k=0..n} (2*(n-k))^(k-1)/k! * C(k,n-k). (End)

%F a(n) ~ sqrt(1+LambertW(1/sqrt(2*exp(1)))) * n^(n-1) / (2*exp(n) * (LambertW(1/sqrt(2*exp(1))))^(n+1)). - _Vaclav Kotesovec_, Jul 09 2013

%e E.g.f.: A(x) = 1 + x + 3*x^2/2! + 19*x^3/3! + 169*x^4/4! + 2041*x^5/5! + ...

%e A(x)^2 = 1 + 2*x + 8*x^2/2! + 56*x^3/3! + 544*x^4/4! + 6912*x^5/5! + ...

%e log(A(x)) = x + x^2 + 2*x^3 + 8*x^4/2! + 56*x^5/3! + 544*x^6/4! + ...

%t CoefficientList[Series[(LambertW[-2*x^2*E^(2*x)]/(-2*x^2))^(1/2), {x, 0, 20}], x]* Range[0, 20]! (* _Vaclav Kotesovec_, Jul 09 2013 *)

%o (PARI) {a(n)=local(A=1+x*O(x^n));for(i=0,n,A=exp(x+x^2*A^2));(n+0)!*polcoeff(A,n)}

%o (PARI) {a(n)=local(A=sum(m=0,n,1*(2*m+1)^(m-1)*(x^2)^m*exp((2*m+1)*x+x*O(x^n))/m!));n!*polcoeff(A,n)}

%o (PARI) a(n,m=1)=n!*sum(k=0,n,m*(2*(n-k)+m)^(k-1)/k!*binomial(k,n-k)) \\ _Paul D. Hanna_, Jul 11 2009

%Y Cf. A047974, A088695, A125500 (variant).

%K nonn

%O 0,3

%A _Paul D. Hanna_, Aug 31 2008

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 September 18 05:30 EDT 2024. Contains 375995 sequences. (Running on oeis4.)