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

A373542
Expansion of e.g.f. exp(x * sqrt(1-x^2)).
0
1, 1, 1, -2, -11, -44, -59, -104, 1513, -4976, 14761, -1005344, -594659, -120135872, -8409491, -19661062784, 461914321, -4406419844864, 8555830993, -1268264427577856, -595229416379, -455779307821067264, -13631036685419, -200172063313066452992
OFFSET
0,4
FORMULA
a(n) = n! * Sum_{k=0..floor(n/2)} (-1)^k * binomial(n/2-k,k)/(n-2*k)!.
a(n) == 1 mod 3.
PROG
(PARI) a(n) = n!*sum(k=0, n\2, (-1)^k*binomial(n/2-k, k)/(n-2*k)!);
CROSSREFS
Cf. A190863.
Sequence in context: A241712 A066058 A153440 * A289645 A181369 A037744
KEYWORD
sign
AUTHOR
Seiichi Manyama, Jun 09 2024
STATUS
approved