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”).

A059243
Primes p such that x^43 = 2 has no solution mod p.
2
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,1
COMMENTS
Complement of A058853 relative to A000040.
LINKS
MATHEMATICA
ok[p_]:= Reduce[Mod[x^43 - 2, p] == 0, x, Integers] == False; Select[Prime[Range[4000]], ok] (* Vincenzo Librandi, Sep 20 2012 *)
PROG
(Magma) [p: p in PrimesUpTo(15000) | not exists{x : x in ResidueClassRing(p) | x^43 eq 2} ]; // Vincenzo Librandi, Sep 20 2012
CROSSREFS
Sequence in context: A275968 A142782 A142250 * A142134 A142849 A271978
KEYWORD
easy,nonn
AUTHOR
Klaus Brockhaus, Jan 21 2001
STATUS
approved