A028667 Galois numbers for p=5; order of group AGL(n,5).
1, 20, 12000, 186000000, 72540000000000, 708171750000000000000, 172882428468750000000000000000, 1055177097007236328125000000000000000000, 161006835289591673217773437500000000000000000000000, 614192019859664935862872123718261718750000000000000000000000000
Offset: 0
Keywords
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..37
- Index entries for sequences related to groups.
Programs
-
Mathematica
FoldList[ #1*5^#2 (5^#2-1)&, 1, Range[ 20 ] ] a[n_] := 5^n * Product[5^n - 5^k, {k, 0, n-1}]; Array[a, 10, 0] (* Amiram Eldar, Jul 12 2025 *)
-
PARI
a(n) = 5^n * prod(k = 0, n-1, 5^n - 5^k); \\ Amiram Eldar, Jul 12 2025
Formula
a(n) = 5^n * Product_{k=0..n-1} (5^n - 5^k).
a(n) ~ c * 5^(n^2+n), where c = A100222. - Amiram Eldar, Jul 12 2025
Comments