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.

A028682 Pseudo Galois numbers for d=20.

Original entry on oeis.org

1, 380, 60648000, 3880986816000000, 99352641531709440000000000, 1017370731356251764129792000000000000000, 4167150450523480419075515127693312000000000000000000000, 6827459292803717741943269048796063017352560640000000000000000000000000000
Offset: 0

Views

Author

Keywords

Crossrefs

Programs

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

Formula

a(n) = 20^n * Product_{k=0..n-1} (20^n - 20^k).
a(n) ~ c * 20^(n^2+n), where c = Product_{k>=1} (1 - 1/20^k) = 0.947500313281... . - Amiram Eldar, Jul 14 2025