Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
%I #9 Oct 31 2024 13:24:57
%S 1,0,6,18,180,1500,15930,191646,2580648,38683224,636068430,
%T 11392350090,220658360076,4594593295188,102333126352002,
%U 2427278515815510,61079333377870800,1625065147997303856,45576552142354413078,1343802083242003570818,41552482139458105525620
%N Expansion of e.g.f. 1/(1 - x^2 * exp(x))^3.
%F a(n) = n! * Sum_{k=0..floor(n/2)} k^(n-2*k) * binomial(k+2,2)/(n-2*k)!.
%F a(n) ~ n! * n^2 / ((1 + LambertW(1/2))^3 * 2^(n+4) * LambertW(1/2)^n). - _Vaclav Kotesovec_, Oct 31 2024
%o (PARI) a(n) = n!*sum(k=0, n\2, k^(n-2*k)*binomial(k+2, 2)/(n-2*k)!);
%Y Cf. A358080, A377531.
%K nonn,easy
%O 0,3
%A _Seiichi Manyama_, Oct 31 2024