cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A373542 Expansion of e.g.f. exp(x * sqrt(1-x^2)).

Original entry on oeis.org

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

Views

Author

Seiichi Manyama, Jun 09 2024

Keywords

Crossrefs

Cf. A190863.

Programs

  • PARI
    a(n) = n!*sum(k=0, n\2, (-1)^k*binomial(n/2-k, k)/(n-2*k)!);

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.