login
A362794
E.g.f. satisfies A(x) = (1+x)^(A(x)^x).
4
1, 1, 0, 6, 0, 170, -120, 12446, -35336, 1832400, -12172320, 469680552, -5524990416, 189586178184, -3321122831208, 111608536026360, -2599887499382400, 90253048158627072, -2595580675897337856, 95720854442948910720, -3237436187047116892800
OFFSET
0,4
LINKS
Eric Weisstein's World of Mathematics, Lambert W-Function.
FORMULA
E.g.f.: exp( -LambertW(-x * log(1+x)) / x ) = (1+x)^exp( -LambertW(-x * log(1+x)) ).
E.g.f.: Sum_{k>=0} (k*x + 1)^(k-1) * (log(1+x))^k / k!.
a(n) ~ -(-1)^n * sqrt(1 + exp(1)*r^2/(1-r)) * n^(n-1) / (exp(n + 1/r) * r^(n+1)), where r = 0.5123112855238643734867005914814802444318611742265... is the root of the equation r*log(1-r) = -exp(-1). - Vaclav Kotesovec, Jan 30 2026
MATHEMATICA
nmax = 20; CoefficientList[Series[E^(-LambertW[-x*Log[1+x]]/x), {x, 0, nmax}], x] * Range[0, nmax]! (* Vaclav Kotesovec, Jan 30 2026 *)
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace((1+x)^exp(-lambertw(-x*log(1+x)))))
CROSSREFS
KEYWORD
sign
AUTHOR
Seiichi Manyama, May 04 2023
STATUS
approved