A344200 Numbers m > 15 such that x^m + x^15 + 1 is irreducible over GF(2) while x^m + x^15 + x^12 + x^3 + 1 = x^m + (x^3 + 1)^5 is not.
20, 60, 100, 140, 260, 900, 7980, 13500
Offset: 1
Examples
20 is a term because x^20 + x^15 + 1 is irreducible over GF(2) but x^20 + x^15 + x^12 + x^3 + 1 is not: x^20 + x^15 + x^12 + x^3 + 1 = (x^4 + x^3 + 1)*(x^8 + x^6 + x^3 + x^2 + 1)*(x^8 + x^7 + x^3 + x^2 + 1).
Crossrefs
Programs
-
PARI
isA344200(n) = polisirreducible(Mod(x^n+x^15+1, 2)) && !polisirreducible(Mod(x^n+x^15+x^12+x^3+1, 2))
Extensions
a(7)-a(8) from Jinyuan Wang, May 15 2021
Comments