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.

A384257 a(n) = Product_{k=0..n-1} (n+3*k+2).

Original entry on oeis.org

1, 3, 28, 440, 9720, 276640, 9634240, 396809280, 18866848000, 1016990374400, 61283225203200, 4082333102848000, 297880548623257600, 23628360309345792000, 2024347339040266240000, 186294495108985303040000, 18327479444105919639552000, 1919453757320555804508160000
Offset: 0

Views

Author

Seiichi Manyama, May 23 2025

Keywords

Crossrefs

Programs

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

Formula

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