login
A040149
Primes p such that x^4 = 21 has a solution mod p.
2
2, 3, 5, 7, 17, 43, 47, 59, 67, 79, 83, 109, 127, 131, 151, 163, 167, 193, 211, 227, 251, 269, 311, 331, 337, 353, 373, 379, 383, 419, 463, 467, 479, 487, 499, 503, 509, 521, 547, 563, 571, 587, 593, 631, 647, 709
OFFSET
1,1
LINKS
MATHEMATICA
ok [p_]:=Reduce[Mod[x^4 - 21, p]== 0, x, Integers]=!= False; Select[Prime[Range[180]], ok] (* Vincenzo Librandi, Sep 12 2012 *)
PROG
(Magma) [p: p in PrimesUpTo(800) | exists(t){x : x in ResidueClassRing(p) | x^4 eq 21}]; // Vincenzo Librandi, Sep 12 2012
CROSSREFS
Cf. A040150.
Sequence in context: A141453 A100532 A231480 * A168034 A034970 A048417
KEYWORD
nonn,easy
STATUS
approved