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.

A028693 24-factorial numbers.

Original entry on oeis.org

1, 23, 13225, 182809175, 60651514035625, 482945140644890444375, 92292253139031982469134515625, 423295781586452233477722435457009484375, 46594416147080909523690749946376478698532878515625, 123093479909646650570543074660375014342475500150254964721484375
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

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

Formula

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