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!)
A040138 Primes p such that x^4 = 17 has a solution mod p. 2
2, 17, 19, 43, 47, 59, 67, 83, 103, 127, 149, 151, 157, 179, 191, 223, 229, 239, 251, 257, 263, 271, 293, 307, 331, 353, 359, 383, 389, 409, 433, 443, 457, 463, 467, 491, 509, 523, 563, 587, 599, 613, 631, 647 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
MATHEMATICA
ok [p_]:=Reduce[Mod[x^4 - 17, p]== 0, x, Integers]=!= False; Select[Prime[Range[180]], ok] (* Vincenzo Librandi, Sep 12 2012 *)
PROG
(Magma) [p: p in PrimesUpTo(800) | exists{x: x in ResidueClassRing(p) | x^4 eq 17}]; // Vincenzo Librandi, Sep 12 2012
(PARI) /* with workaround for bug with ispower( Mod(17, n), 4) "division by zero" */
select( n->(n==2) || (ispower( Mod(17, n), 4)), primes(1000) )
/* Joerg Arndt, Sep 12 2012 */
CROSSREFS
Cf. A040140.
Sequence in context: A041339 A042925 A019413 * A240475 A107139 A042055
KEYWORD
nonn,easy
AUTHOR
STATUS
approved

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 April 24 04:02 EDT 2024. Contains 371918 sequences. (Running on oeis4.)