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.

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

Original entry on oeis.org

1, 2, 21, 384, 9945, 332640, 13627845, 660602880, 36974963025, 2346549004800, 166490632833525, 13059009124761600, 1122040194333683625, 104802322548059136000, 10572978481108199281125, 1145749403453003661312000, 132730561036298082383150625, 16369108295524571830763520000
Offset: 0

Views

Author

Seiichi Manyama, May 23 2025

Keywords

Crossrefs

Programs

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

Formula

a(n) = 4^n * RisingFactorial((n+1)/4,n).
a(n) = n! * [x^n] 1/(1 - 4*x)^((n+1)/4).