A344198 Numbers m > 9 such that x^m + x^9 + 1 is irreducible over GF(2) while x^m + x^9 + x^6 + x^3 + 1 = x^m + (x^3 + 1)^3 is not.
12, 18, 30, 36, 54, 60, 84, 156, 198, 390, 540, 1950, 4788
Offset: 1
Examples
18 is a term because x^18 + x^9 + 1 is irreducible over GF(2) but x^18 + x^9 + x^6 + x^3 + 1 is not: x^18 + x^9 + x^6 + x^3 + 1 = (x^6 + x^3 + 1)*(x^12 + x^9 + 1).
Crossrefs
Programs
-
PARI
isA344198(n) = polisirreducible(Mod(x^n+x^9+1, 2)) && !polisirreducible(Mod(x^n+x^9+x^6+x^3+1, 2))
Comments