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.
%I A056679 #10 Apr 17 2020 07:47:17 %S A056679 2,5,17,59,73,269,3769,4327 %N A056679 Primes p such that 1 + x + Sum_{q prime <= p} x^q is irreducible over GF(2). %e A056679 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). %o A056679 (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 %Y A056679 Cf. A071642. %K A056679 nonn,more %O A056679 1,1 %A A056679 _Robert G. Wilson v_, Nov 10 2000 %E A056679 a(7)-a(8) from _Jinyuan Wang_, Apr 15 2020