A344197 Numbers m > 5 such that x^m + x^5 + 1 is irreducible over GF(2) while x^m + x^5 + x^4 + x + 1 = x^m + (x + 1)^5 is not.
20, 300, 2660, 4500
Offset: 1
Examples
20 is a term because x^20 + x^5 + 1 is irreducible over GF(2) but x^20 + x^5 + x^4 + x + 1 is not: x^20 + x^5 + x^4 + x + 1 = (x^4 + x + 1)*(x^8 + x^7 + x^4 + x^3 + x^2 + x + 1)*(x^8 + x^7 + x^6 + x + 1).
Crossrefs
Programs
-
PARI
isA344197(n) = polisirreducible(Mod(x^n+x^5+1, 2)) && !polisirreducible(Mod(x^n+x^5+x^4+x+1, 2))
Comments