login
A040124
Primes p such that x^4 = 12 has a solution mod p.
2
2, 3, 11, 23, 37, 47, 59, 61, 71, 83, 107, 131, 157, 167, 179, 191, 193, 227, 239, 251, 263, 311, 313, 347, 349, 359, 373, 383, 397, 419, 431, 433, 443, 467, 479, 491, 503, 563, 577, 587, 599, 601, 613, 647, 659
OFFSET
1,1
LINKS
MATHEMATICA
ok [p_]:=Reduce[Mod[x^4 - 12, 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 12}]; // Vincenzo Librandi, Sep 12 2012
(PARI) select( n->ispower( Mod(12, n), 4), primes(1000) ) /* Joerg Arndt, Sep 12 2012 */
CROSSREFS
Cf. A040125.
Sequence in context: A320393 A350853 A080153 * A082739 A158017 A346605
KEYWORD
nonn,easy
STATUS
approved