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.

Showing 1-1 of 1 results.

A373540 Expansion of e.g.f. exp(x/(1 + x^4)^(1/4)).

Original entry on oeis.org

1, 1, 1, 1, 1, -29, -179, -629, -1679, 52921, 672841, 4352041, 19934641, -656794709, -13394641259, -130483743389, -870226287839, 29354743432561, 855880592510161, 11361346027482961, 101129588155349281, -3446498927212733069, -134465010284782027619
Offset: 0

Views

Author

Seiichi Manyama, Jun 09 2024

Keywords

Crossrefs

Programs

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

Formula

a(n) = n! * Sum_{k=0..floor(n/4)} (-1)^k * binomial(n/4-1,k)/(n-4*k)!.
a(n) == 1 mod 30.
Showing 1-1 of 1 results.