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.

A028671 Pseudo Galois numbers for d=9; order of group AGL(n,3^2).

Original entry on oeis.org

1, 72, 466560, 247608990720, 10657130578027315200, 37158487365982254056334950400, 10494634615565778355427184150449750016000, 240083527795435700509596514439839216948307004751872000, 444879613680905841995130298273091805272041653799250478127267184640000
Offset: 0

Views

Author

Keywords

Crossrefs

Programs

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

Formula

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