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.

A057749 Prime degrees of absolutely reducible trinomials: primes p such that x^p + x^k + 1 is reducible over GF(2) for all k, p>k>0.

This page as a plain text file.
%I A057749 #6 May 09 2016 15:02:35
%S A057749 13,19,37,43,53,59,61,67,83,101,107,109,131,139,149,157,163,173,179,
%T A057749 181,197,211,227,229,251,269,277,283,293,307,311,317,331,347,349,373,
%U A057749 379,389,397,419,421,443,461,467,491,499,509,523,541,547,557,563,571
%N A057749 Prime degrees of absolutely reducible trinomials: primes p such that x^p + x^k + 1 is reducible over GF(2) for all k, p>k>0.
%t A057749 Do[ k = 1; While[ ToString[ Factor[ x^Prime[ n ] + x^k + 1, Modulus -> 2 ] ] != ToString[ x^Prime[ n ] + x^k + 1 ] && k < Prime[ n ], k++ ]; If[ k == Prime[ n ], Print[ Prime[ n ] ] ], {n, 1, 144} ]
%o A057749 (PARI) lista(nn) = {forprime(p=2, nn, ok = 1; for (k=1, p-1, if (polisirreducible(Mod(1,2)*(x^p + x^k + 1)), ok = 0; break);); if (ok, print1(p, ", ")););}
%K A057749 nonn
%O A057749 1,1
%A A057749 _Robert G. Wilson v_, Oct 30 2000