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 A267918 #43 Nov 23 2019 04:08:35 %S A267918 6,9,12,14,17,23,44,47,63,84,129,236,278,279,297,647,726,737,2574, %T A267918 4233,8207,16046,21983,23999,24596,24849,84929 %N A267918 Numbers n such that x^(n-5)*(x+1)^5+1 is irreducible in F2[x]. %C A267918 Putting M(n,a) = x^(n-a)*(x+1)^n+1 in F2[x], a "Mersenne binary polynomial" and S(n,a) = x^n +(x+1)^a in F2[x], we see that the n's in the sequence are also the n's where S(n,5) is irreducible. %C A267918 Irreducible Mersenne binary polynomials appear as factors of the only eleven known (see Canaday's paper) nontrivial even perfect polynomials over F2, i.e., polynomials A in F2[x], divisible by x*(x+1), that are fixed points of the sum of divisors function sigma. In other words, we also have sigma(A)=A, where sigma(A) is the sum in F2[x] of all divisors of A (including 1 and A). Trivial even perfect polynomials are the M(2^(n+1)-2,2^n-1)+1 = x^(2^n-1)*(x+1)^(2^n-1). %C A267918 Next term > 10^5. - _Joerg Arndt_, May 01 2016 %H A267918 E. F. Canaday, <a href="http://dx.doi.org/10.1215/S0012-7094-41-00861-X">The sum of the divisors of a polynomial</a>, Duke Math. J. 8, (1941), 721-737. %e A267918 For n=6, x^(6-5)*(x+1)^5+1 = x^6 + x^5 + x^2 + x + 1 is irreducible in F_2[x]. %o A267918 (PARI) for(n=5,10^5, if(polisirreducible(Mod(1,2)*(x^(n-5)*(x+1)^5+1)),print1(n,", "))); \\ _Joerg Arndt_, May 01 2016 %o A267918 (Sage) %o A267918 P.<x> = GF(2)[] %o A267918 for n in range(6, 10^5): %o A267918 if (x^(n-5)*(1+x)^5+1).is_irreducible(): %o A267918 print(n) %o A267918 # _Joerg Arndt_, May 01 2016 %K A267918 nonn,more %O A267918 1,1 %A A267918 _Luis H. Gallardo_, May 01 2016 %E A267918 Terms a(12) and beyond from _Joerg Arndt_, May 01 2016