login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

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
AUTHOR
STATUS
approved