OFFSET
1,1
COMMENTS
Subsequence of A091209 (see comments there).
LINKS
EXAMPLE
79 is a term because 79 = 1001111_2 which corresponds to the polynomial x^6 + x^3 + x^2 + x + 1, but over GF(2) we have x^6 + x^3 + x^2 + x + 1 = (x^2 + x + 1)*(x^4 + x^3 + 1). - Jianing Song, May 10 2021
PROG
(PARI) forprime(p=2, 10^4, if( (hammingweight(p)%2==1) && ! polisirreducible( Mod(1, 2)*Pol(binary(p)) ), print1(p, ", ") ) );
CROSSREFS
KEYWORD
nonn
AUTHOR
Joerg Arndt, Feb 19 2014
STATUS
approved