A344199 Numbers m > 15 such that x^m + x^15 + 1 is irreducible over GF(2) while x^m + x^15 + x^10 + x^5 + 1 = x^m + (x^5 + 1)^3 is not.
18, 36, 60, 252, 708, 834, 900, 2178, 7722, 7980
Offset: 1
Examples
18 is a term because x^18 + x^15 + 1 is irreducible over GF(2) but x^18 + x^15 + x^10 + x^5 + 1 is not: x^18 + x^15 + x^12 + x^3 + 1 = (x^2 + x + 1)*(x^6 + x^5 + 1)*(x^10 + x^4 + x^3 + x + 1).
Crossrefs
Programs
-
PARI
isA344199(n) = polisirreducible(Mod(x^n+x^15+1, 2)) && !polisirreducible(Mod(x^n+x^15+x^10+x^5+1, 2))
Extensions
a(9)-a(10) from Michel Marcus, May 18 2021
Comments