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!)
A227176 E.g.f.: LambertW(LambertW(-x)) / LambertW(-x). 7

%I #42 Jul 18 2013 02:37:16

%S 1,1,5,43,525,8321,162463,3774513,101808185,3129525793,108063152091,

%T 4143297446729,174723134310277,8039591465487297,400924930695585143,

%U 21543513647508536161,1241094846565489688817,76314967969651411780673,4989260143610128556354611

%N E.g.f.: LambertW(LambertW(-x)) / LambertW(-x).

%H Vincenzo Librandi, <a href="/A227176/b227176.txt">Table of n, a(n) for n = 0..100</a>

%F a(n) = Sum_{k=0..n} binomial(n,k) * k*(k+1)^(k-1) * n^(n-k-1) for n>0 with a(0)=1.

%F E.g.f. A(x) satisfies:

%F (1) A(x) = W(x*W(x)), where W(x) = LambertW(-x)/(-x) = Sum_{n>=0} (n+1)^(n-1)*x^n/n!.

%F (2) A(x) = exp( T(T(x)) ), where T(x) = -LambertW(-x) is Euler's tree function (A000169).

%F (3) A(x) = exp( -A(x)*LambertW(-x) ).

%F (4) A(x) = ( LambertW(-x)/(-x) )^A(x).

%F (5) A(x) = ( Sum_{n>=0} (n+1)^(n-1)*x^n/n! )^A(x).

%F (6) A(x) = Sum_{n>=0} A(x)*(n + A(x))^(n-1) * x^n/n!.

%F (7) A(x)^m = Sum_{n>=0} m*A(x)*(n + m*A(x))^(n-1) * x^n/n!.

%F (8) A(x/exp(x)) = exp(T(x)) = LambertW(-x)/(-x).

%F (9) log(A(x)) = A(x) * Sum_{n>=1} n^(n-1) * x^n/n!, and equals the e.g.f. of A207833.

%F (10) A(x) = 1 + Sum_{n>=1} (n+1)^(n-1)*x^n/n! * Sum_{k>=0} n*(k+n)^(k-1)*x^k/k!.

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

%e E.g.f.: A(x) = 1 + x + 5*x^2/2! + 43*x^3/3! + 525*x^4/4! + 8321*x^5/5! +...

%e Define W(x) = LambertW(-x)/(-x), where W(x) = exp(x*W(x)) and begins:

%e W(x) = 1 + x + 3*x^2/2! + 4^2*x^3/3! + 5^3*x^4/4! + 6^4*x^5/5! +...

%e then

%e (1) A(x) = W(x*W(x)),

%e (4) A(x) = W(x)^A(x),

%e (3) A(x) = exp( x*A(x)*W(x) ),

%e (8) A(x/exp(x)) = W(x).

%e The e.g.f. also satisfies:

%e (6) A(x) = 1 + A(x)*x + A(x)*(2 + A(x))*x^2/2! + A(x)*(3 + A(x))^2*x^3/3! + A(x)*(4 + A(x))^3*x^4/4! + A(x)*(5 + A(x))^4*x^5/5! +...

%e and, for all real m,

%e (7) A(x)^m = 1 + m*A(x)*(1+m*A(x))^0*x^1/1! + m*A(x)*(2+m*A(x))^1*x^2/2! + m*A(x)*(3+m*A(x))^2*x^3/3! + m*A(x)*(4+m*A(x))^3*x^4/4! + m*A(x)*(5+m*A(x))^4*x^5/5! +...

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

%o (PARI) {a(n) = if(n==0,1,sum(k=0,n,binomial(n,k)*k*(k+1)^(k-1)*n^(n-k-1)))}

%o for(n=0,20,print1(a(n),", "))

%o (PARI) /* E.g.f.: A(x) = W(x*W(x)) */

%o {a(n)=local(W=sum(k=0,n,(k+1)^(k-1)*x^k/k!)+x*O(x^n));n!*polcoeff(subst(W,x,x*W), n)}

%o (PARI) /* E.g.f.: A(x) = exp(T(T(x)) ) */

%o {a(n)=local(T=sum(k=1,n,k^(k-1)*x^k/k!)+x*O(x^n));n!*polcoeff(exp(subst(T,x,T)), n)}

%o (PARI) /* E.g.f.: A(x) = exp( -A(x)*LambertW(-x) ) */

%o {a(n)=local(A=1+x,LambertW=sum(k=1,n,-k^(k-1)*(-x)^k/k!)+x*O(x^n));

%o for(i=1,n,A=exp(-A*subst(LambertW,x,-x) +x*O(x^n)));n!*polcoeff(A, n)}

%o (PARI) /* E.g.f.: A(x) = ( LambertW(-x)/(-x) )^A(x) */

%o {a(n)=local(A=1+x,W=sum(k=0,n,(k+1)^(k-1)*x^k/k!)+x*O(x^n));

%o for(i=1,n,A=W^A);n!*polcoeff(A, n)}

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

%o {a(n)=local(A=1+x);for(i=1,n,A=sum(k=0, n, A*(k+A)^(k-1)*x^k/k!)+x*O(x^n)); n!*polcoeff(A, n)}

%Y Cf. A207833, A195203, A000169.

%K nonn

%O 0,3

%A _Paul D. Hanna_, Jul 04 2013

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 August 27 08:00 EDT 2024. Contains 375462 sequences. (Running on oeis4.)