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.

A028681 Galois numbers for p=19; order of group AGL(n,19).

Original entry on oeis.org

1, 342, 44446320, 2090711424299040, 35507456811518119000588800, 217698482437446717711443628892666137600, 481835288795046555242155407852974930874821656470528000, 384989616762670041552999657317996225002975219911214265653201810077696000
Offset: 0

Views

Author

Keywords

Crossrefs

Programs

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

Formula

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