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.

A028694 25-factorial numbers.

Original entry on oeis.org

1, 24, 14976, 233985024, 91400166014976, 892579654839833985024, 217914953902301689160166014976, 1330047325845938129350664710839833985024, 202949115880923695556030391039325175289160166014976, 774189437411767935420978172981557217629743778824710839833985024
Offset: 0

Views

Author

Keywords

Crossrefs

Programs

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

Formula

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