A218364 Minimal order of degree-n irreducible polynomials over GF(29).
1, 3, 13, 16, 732541, 9, 49, 32, 14437, 11, 23, 37, 521, 147, 181, 17, 3911, 19, 1386659, 176, 637, 69, 131327761273, 288, 151, 53, 52813, 784, 59, 99, 36767, 128, 299, 1973, 71, 304, 149, 16759, 169, 41, 83, 43, 173, 368, 2613097, 47, 283, 153, 197, 125, 103
Offset: 1
Keywords
Links
- Max Alekseyev, Table of n, a(n) for n = 1..222
- Eric Weisstein's World of Mathematics, Irreducible Polynomial
- Eric Weisstein's World of Mathematics, Polynomial Order
Programs
-
Maple
with(numtheory): M:= proc(n) M(n):= divisors(29^n-1) minus U(n-1) end: U:= proc(n) U(n):= `if`(n=0, {}, M(n) union U(n-1)) end: a:= n-> min(M(n)[]): seq(a(n), n=1..10);
-
Mathematica
M[n_] := M[n] = Divisors[29^n - 1]~Complement~U[n - 1]; U[n_] := U[n] = If[n == 0, {}, M[n]~Union~U[n - 1]]; a[n_] := Min[M[n]]; Table[Print[n, " ", a[n]]; a[n], {n, 1, 51}] (* Jean-François Alcover, Oct 24 2022, after Alois P. Heinz *)
Comments