OFFSET
0,3
LINKS
Vaclav Kotesovec, Table of n, a(n) for n = 0..400
Eric Weisstein's World of Mathematics, Lambert W-Function.
FORMULA
a(n) = n! * Sum_{k=1..floor(n/2)} k^(k-1) * |Stirling1(n-k,k)|/(n-k)!.
a(n) ~ c * n^(n-1) / (exp(n) * r^n), where r = 0.51231128552386437348670059148148... is the root of the equation r*log(1-r) = -exp(-1) and c = sqrt(1 + exp(1)*r^2/(1-r)) = 1.56936827475369243605279148406... - Vaclav Kotesovec, Jan 25 2026
MATHEMATICA
Table[n! * Sum[k^(k-1) * Abs[StirlingS1[n-k, k]]/(n-k)!, {k, 1, n/2}], {n, 0, 20}] (* Vaclav Kotesovec, Jan 25 2026 *)
PROG
(PARI) my(N=20, x='x+O('x^N)); concat([0, 0], Vec(serlaplace(-lambertw(x*log(1-x)))))
(PARI) a(n) = n!*sum(k=1, n\2, k^(k-1)*abs(stirling(n-k, k, 1))/(n-k)!);
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Sep 21 2022
STATUS
approved
