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.

A384453 a(n) is the n-th q-factorial number for q=-n.

Original entry on oeis.org

1, 1, -1, -14, 1989, 4551456, -212333070125, -246183190158589200, 8363069275661695069900425, 9589835030046843645163231485460480, -420238291486760860506028808179511473194550689, -785971734280677729025139143429963192709390305509012000000
Offset: 0

Views

Author

Seiichi Manyama, May 30 2025

Keywords

Crossrefs

Main diagonal of A384454.
Cf. A347611.

Programs

  • Mathematica
    Table[QFactorial[n, -n], {n, 0, 11}] (* Amiram Eldar, Aug 10 2025 *)
  • PARI
    a(n) = prod(k=1, n, (1-(-n)^k)/(1+n));

Formula

a(n) = Product_{k=1..n} (1 - (-n)^k)/(1 + n).