login

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”).

A356029
a(n) = n! * Sum_{k=0..floor(n/2)} (n - 2*k)^k/(2^k * (n - 2*k)!).
3
1, 1, 1, 4, 13, 61, 421, 2626, 27049, 245953, 3069721, 40222216, 576988501, 10058716669, 169773404893, 3596206855606, 73450508303761, 1775382487932001, 43993288886533489, 1183551336464017708, 34806599282992709341, 1043452963148195577181
OFFSET
0,4
FORMULA
E.g.f.: Sum_{k>=0} x^k / (k! * (1 - k*x^2/2)).
MATHEMATICA
a[n_] := n! * Sum[(n - 2*k)^k/(2^k*(n - 2*k)!), {k, 0, Floor[n/2]}]; a[0] = 1; Array[a, 22, 0] (* Amiram Eldar, Aug 19 2022 *)
PROG
(PARI) a(n) = n!*sum(k=0, n\2, (n-2*k)^k/(2^k*(n-2*k)!));
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(sum(k=0, N, x^k/(k!*(1-k*x^2/2)))))
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 18 2022
STATUS
approved