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.

A028674 Pseudo Galois numbers for d=12.

Original entry on oeis.org

1, 132, 2718144, 8111637540864, 3487687464241924669440, 215947547174699123561887936020480, 1925409377348197859035291587889453626619330560, 2472068582401983350289346536053061182913649906696710374031360
Offset: 0

Views

Author

Keywords

Crossrefs

Programs

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

Formula

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