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.

A028679 Galois numbers for p=17; order of group AGL(n,17).

Original entry on oeis.org

1, 272, 22639104, 546341708980224, 3811101610741578352558080, 7683152190027081335646892427952783360, 4476375132477699824408564935442752007430598683525120, 753722313834315665863920705126825485467891025286555525186004419870720
Offset: 0

Views

Author

Keywords

Crossrefs

Programs

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

Formula

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