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.

A028675 Galois numbers for p=13; order of group AGL(n,13).

Original entry on oeis.org

1, 156, 4429152, 21368939889024, 17430690424387037091840, 2402962221899462961810522363863040, 55984406793280086114756507719510983331312762880, 220431677762305366198023742325712037545142450383991425548943360
Offset: 0

Views

Author

Keywords

Crossrefs

Programs

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

Formula

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