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.

A028677 Pseudo Galois numbers for d=15.

Original entry on oeis.org

1, 210, 10584000, 120522654000000, 308880278577360000000000, 178115698742031918598500000000000000, 23109857603759312583902403410250000000000000000000, 674644359535320835775869151538023145415195312500000000000000000000
Offset: 0

Views

Author

Keywords

Crossrefs

Programs

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

Formula

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