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.

A028676 Pseudo Galois numbers for d=14.

Original entry on oeis.org

1, 182, 6956040, 52356666223680, 77265383687862143155200, 22349330345043106156640015717990400, 1267070807948330368930015476714098504169160704000, 14079699332820783408928640305225880493640569562642424631656448000
Offset: 0

Views

Author

Keywords

Crossrefs

Programs

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

Formula

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