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

A351155
Expansion of e.g.f. (1 - x^2/2)^(-x).
3
1, 0, 0, 3, 0, 15, 90, 210, 2520, 13230, 103950, 873180, 7484400, 72972900, 745404660, 8185126950, 95805309600, 1184852869200, 15538995271800, 214159261516200, 3109622647131000, 47252530639314000, 752635500963746400, 12499951421009052000, 216709136059079664000
OFFSET
0,4
FORMULA
a(0) = 1; a(n) = (n-1)! * Sum_{k=2..floor((n+1)/2)} (2*k-1)/((k-1) * 2^(k-1)) * a(n-2*k+1)/(n-2*k+1)!.
a(n) = n! * Sum_{k=0..floor(n/2)} |Stirling1(k,n-2*k)|/(2^k*k!).
a(n) ~ sqrt(Pi) * n^(n - 1/2 + sqrt(2)) / (Gamma(sqrt(2)) * exp(n) * 2^(n/2 + sqrt(2) - 1/2)). - Vaclav Kotesovec, May 04 2022
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace((1-x^2/2)^(-x)))
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(-x*log(1-x^2/2))))
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=(i-1)!*sum(j=2, (i+1)\2, (2*j-1)/((j-1)*2^(j-1))*v[i-2*j+2]/(i-2*j+1)!)); v;
(PARI) a(n) = n!*sum(k=0, n\2, abs(stirling(k, n-2*k, 1))/(2^k*k!));
CROSSREFS
Sequence in context: A091000 A361804 A375591 * A013490 A013351 A013407
KEYWORD
nonn
AUTHOR
Seiichi Manyama, May 02 2022
STATUS
approved