OFFSET
1,2
COMMENTS
a(18) is greater than 10^5. - Joerg Arndt, Apr 28 2012
All terms are congruent to 1 or 3 (mod 6). - Robert Israel, Sep 05 2016
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.
EXAMPLE
6 is not in the sequence since x^6 + x^4 + 1 = (x^3 + x^2 + 1)^2, but 7 is in the sequence since x^7 + x^4 + 1 is irreducible. (Trial division by x + 1, x^2 + x + 1, x^3 + x^2 + 1, and x^3 + x + 1) - Michael B. Porter, Sep 06 2016
MAPLE
for m from 1 to 200 do if(Irreduc(x^m + x^4 + 1) mod 2) then printf("%d, ", m):fi:od: # Nathaniel Johnston, Apr 19 2011
PROG
(Sage)
P.<x> = GF(2)[]
for n in range(10^4):
if (x^n+x^4+1).is_irreducible():
print(n) # Joerg Arndt, Apr 28 2012
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Robert G. Wilson v, Sep 27 2000
EXTENSIONS
a(10)-a(15) from Nathaniel Johnston, Apr 19 2011
a(16)-a(17) from Joerg Arndt, Apr 28 2012
a(18) from Lucas A. Brown, Nov 28 2022
STATUS
approved