OFFSET
1,2
COMMENTS
Next term is > 10^5. - Joerg Arndt, Apr 28 2012
It seems that if x^k + x^3 + 1 is irreducible and k is not a multiple of 6, then so is x^k + x^3 + x^2 + x + 1. If this is true, then no term can be congruent to 3 modulo 6. - Jianing Song, May 11 2021
Any subsequent terms are > 300000. - Lucas A. Brown, Nov 28 2022
LINKS
Joerg Arndt, Matters Computational (The Fxtbook), section 40.9.3 "Irreducible trinomials of the form 1 + x^k + x^d", p. 850
Lucas A. Brown, Python program.
Lucas A. Brown, Sage program.
PROG
(PARI)
for (n=1, 5000, if ( polisirreducible(Mod(1, 2)*(x^n+x^3+1)), print1(n, ", ") ) );
/* Joerg Arndt, Apr 28 2012 */
(Sage)
P.<x> = GF(2)[]
for n in range(10^4):
if (x^n+x^3+1).is_irreducible():
print(n) # Joerg Arndt, Apr 28 2012
CROSSREFS
KEYWORD
nonn,hard
AUTHOR
Robert G. Wilson v, Sep 27 2000
EXTENSIONS
a(24)-a(29) from Robert G. Wilson v, Aug 06 2010
Terms >= 4098 from Joerg Arndt, Apr 28 2012
a(47)-a(53) from Lucas A. Brown, Nov 28 2022
STATUS
approved