OFFSET
0,3
LINKS
Eric Weisstein's World of Mathematics, Lambert W-Function.
FORMULA
E.g.f. A(x) satisfies A(x) = exp( x * cos(x) * A(x) ).
a(n) = Sum_{k=0..n} (k+1)^(k-1) * i^(n-k) * A185951(n,k), where i is the imaginary unit.
a(n) ~ sqrt(1 - r*sqrt(exp(2)*r^2 - 1)) * n^(n-1) / (exp(n-1) * r^n), where r = 0.3992882914671621302380071869880891621973411296719... is the root of the equation r*cos(r) = exp(-1). - Vaclav Kotesovec, Jan 30 2026
PROG
(PARI) a185951(n, k) = binomial(n, k)/2^k*sum(j=0, k, (2*j-k)^(n-k)*binomial(k, j));
a(n) = sum(k=0, n, (k+1)^(k-1)*I^(n-k)*a185951(n, k));
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Feb 15 2025
STATUS
approved
