login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A057484 Numbers n such that x^n + x^5 + x^4 + x^3 + x^2 + x + 1 is irreducible over GF(2). 0
1, 2, 3, 4, 5, 7, 8, 12, 14, 16, 17, 18, 19, 21, 23, 36, 37, 42, 61, 88, 112, 147, 171, 239, 253, 302, 304, 333, 402, 472, 597, 619, 718, 824, 1011, 1127, 1347, 1653, 1726, 1813, 3043, 3449, 4123, 4208, 5493, 7702, 8512, 10371, 13942, 14687, 20174, 22027, 24067, 25799, 28716, 29774, 31026, 31923, 33406, 34347, 42569, 52533, 54349 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
PROG
(Sage)
P.<x> = GF(2)[]
for n in range(1, 10^5):
p = (x^n + x^5 + x^4 + x^3 + x^2 + x + 1);
if p.is_irreducible():
print(n)
# Joerg Arndt, Apr 28 2012
CROSSREFS
Sequence in context: A046098 A258085 A247350 * A091997 A124168 A309708
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Sep 27 2000
EXTENSIONS
Added terms 1, 2, 3, 4, 5 and terms >= 824, Joerg Arndt, Apr 28 2012
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)