OFFSET
0,3
FORMULA
E.g.f.: B(x)^2, where B(x) is the e.g.f. of A052830.
a(n) = n! * Sum_{k=0..floor(n/2)} (k+1)! * |Stirling1(n-k,k)|/(n-k)!.
a(n) ~ sqrt(2*Pi) * r^n * n^(n + 3/2) / ((1 + 1/(r*(r-1)))^2 * exp(n)), where r = 1.34997648540112544262746690676132084912056729543... is the root of the equation (r-1)*exp(r) = r. - Vaclav Kotesovec, Jan 23 2026
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(1/(1+x*log(1-x))^2))
(PARI) a(n) = n!*sum(k=0, n\2, (k+1)!*abs(stirling(n-k, k, 1))/(n-k)!);
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 23 2024
STATUS
approved
