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!)
A135844 Prime numbers p for which the quintic polynomial x^5 - x - 1 modulo p completely factors into linear polynomials. 4

%I #13 Dec 07 2016 11:42:50

%S 1973,3769,5101,7727,8161,9631,11903,14629,16903,17737,17921,18097,

%T 19477,20747,20759,21727,22717,23567,25037,26681,27397,27529,28279,

%U 29207,29959,30497,31091,31319,33289,36097,37463,39161,39671,40151,41491,42139,42487,42689,43331,44171,44221

%N Prime numbers p for which the quintic polynomial x^5 - x - 1 modulo p completely factors into linear polynomials.

%H G. C. Greubel, <a href="/A135844/b135844.txt">Table of n, a(n) for n = 1..1000</a>

%t a = {}; Do[poly = PolynomialMod[x^5 - x - 1, Prime[n]]; c = FactorList[poly, Modulus -> Prime[n]]; If[Sum[c[[m]][[2]], {m, 1, Length[c]}] == 6, AppendTo[a, Prime[n]]], {n, 1, 10000}]; a

%o (PARI) isok(n)=#factormod(x^5-x-1,n)[,2]==5;

%o forprime(n=2,10^6,if(isok(n),print1(n,", "))); \\ _Joerg Arndt_, Dec 07 2016

%Y Cf. A135842, A135843, A135845, A135846, A135847.

%K nonn

%O 1,1

%A _Artur Jasinski_, Dec 01 2007

%E Terms a(35) and beyond from _G. C. Greubel_, Dec 06 2016

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 March 29 06:15 EDT 2024. Contains 371265 sequences. (Running on oeis4.)