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

A059225
Primes p such that x^31 = 2 has no solution mod p.
2
311, 373, 1117, 1303, 1427, 1489, 1861, 2357, 2543, 2729, 2791, 3163, 3659, 3907, 4093, 4217, 4651, 5023, 5147, 5209, 5333, 5519, 5581, 5953, 6263, 6449, 6883, 7069, 7193, 7937, 8123, 8681, 8867, 8929, 9239, 9859, 10789, 11161, 11471, 11657, 11719
OFFSET
1,1
COMMENTS
Complement of A216883 relative to A000040. - Vincenzo Librandi, Sep 20 2012
LINKS
MATHEMATICA
ok[p_]:= Reduce[Mod[x^31 - 2, p] == 0, x, Integers] == False; Select[Prime[Range[2000]], ok] (* Vincenzo Librandi, Sep 20 2012 *)
PROG
(Magma) [p: p in PrimesUpTo(12500) | not exists{x : x in ResidueClassRing(p) | x^31 eq 2} ]; // Vincenzo Librandi, Sep 20 2012
CROSSREFS
Sequence in context: A060339 A046016 A142005 * A157717 A113155 A259221
KEYWORD
easy,nonn
AUTHOR
Klaus Brockhaus, Jan 19 2001
STATUS
approved