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.

A383996 a(n) = Product_{k=0..n-1} (n-4*k).

Original entry on oeis.org

1, 1, -4, 15, 0, -1155, 20160, -208845, 0, 68139225, -2075673600, 34976316375, 0, -25949801752875, 1126343522304000, -26264240610733125, 0, 34770736214117528625, -1958486116582195200000, 58318039100493206409375, 0, -120842042784862988395681875, 8366746697372733839769600000
Offset: 0

Views

Author

Seiichi Manyama, May 22 2025

Keywords

Crossrefs

Column k=4 of A384216.
Cf. A303487.

Programs

  • PARI
    a(n) = prod(k=0, n-1, n-4*k);
    
  • Sage
    def a(n): return 4^n*falling_factorial(n/4, n)

Formula

a(n) = 4^n * FallingFactorial(n/4,n).
a(n) = n! * [x^n] (1 + 4*x)^(n/4).
a(4*n) = 0 for n > 0.