A124827 Order of Galois groups of irreducible Chebyshev polynomials of order n.
1, 2, 6, 8, 20, 12, 42, 16, 54, 40, 110, 48, 156, 84, 120, 64, 272, 108, 342, 160, 252
Offset: 1
Examples
a(5)=20 because the order of the Galois group of polynomial 16x^5-20x^3+5x-c is 20 (where c is an integer chosen so that the polynomial is irreducible). This transitive group is the Frobenius group F5 of order 20 (also called the metacyclic group M_5) T5_3(20) in Magma classification.
Links
- Math Overflow, Galois Group of x^n - 2
Programs
-
Magma
Zx
:=PolynomialRing(Integers()); f:=16*x^5-20*x^3+5*x-7; G:=GaloisGroup(f:Old); "Order of group",#G; // Juergen Klueners klueners(AT)math.uni-duesseldorf.de
Comments