A059243 Primes p such that x^43 = 2 has no solution mod p.
173, 431, 947, 1033, 1291, 1549, 1721, 1979, 2237, 2753, 3011, 3527, 3613, 4129, 4817, 4903, 5333, 5591, 5849, 6451, 6709, 6967, 7741, 8171, 8429, 9203, 9461, 9547, 9719, 10321, 10837, 11353, 11783, 12041, 13159, 13331, 13417, 13933, 14621
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Magma
[p: p in PrimesUpTo(15000) | not exists{x : x in ResidueClassRing(p) | x^43 eq 2} ]; // Vincenzo Librandi, Sep 20 2012
-
Mathematica
ok[p_]:= Reduce[Mod[x^43 - 2, p] == 0, x, Integers] == False; Select[Prime[Range[4000]], ok] (* Vincenzo Librandi, Sep 20 2012 *)
Comments