cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A056679 Primes p such that 1 + x + Sum_{q prime <= p} x^q is irreducible over GF(2).

Original entry on oeis.org

2, 5, 17, 59, 73, 269, 3769, 4327
Offset: 1

Views

Author

Robert G. Wilson v, Nov 10 2000

Keywords

Examples

			a(3) = 17 because 1 + x + x^2 + x^3 + x^5 + x^7 + x^11 + x^13 + x^17 is irreducible over GF(2).
		

Crossrefs

Cf. A071642.

Programs

  • PARI
    lista(nn) = {my(f=1+x); forprime(p=2, nn, f+=x^p; if(polisirreducible(Mod(1, 2)*f), print1(p, ", "))); } \\ Jinyuan Wang, Apr 15 2020

Extensions

a(7)-a(8) from Jinyuan Wang, Apr 15 2020