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.

A028692 23-factorial numbers.

Original entry on oeis.org

1, 22, 11616, 141320256, 39547060439040, 254538406080331591680, 37680818974206486508802211840, 128296611269497862923425473853914480640, 10047034036599529256387830050150921763777884979200, 18096242094820543236399273859296273669601076798103392511590400
Offset: 0

Views

Author

Keywords

Crossrefs

Programs

  • Mathematica
    FoldList[ #1 (23^#2-1)&, 1, Range[ 20 ] ]
    a[n_] := Abs[QPochhammer[23, 23, n]]; Array[a, 10, 0] (* Amiram Eldar, Jul 14 2025 *)
  • PARI
    a(n) = prod(k = 1, n, 23^k - 1); \\ Amiram Eldar, Jul 14 2025

Formula

From Amiram Eldar, Jul 14 2025: (Start)
a(n) = Product_{k=1..n} (23^k-1).
a(n) ~ c * 23^(n*(n+1)/2), where c = Product_{k>=1} (1 - 1/23^k) = 0.954631535623... . (End)