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

A040991
Primes p such that x^5 = 23 has no solution mod p.
2
31, 41, 61, 101, 131, 181, 191, 211, 241, 251, 281, 311, 401, 421, 431, 491, 521, 541, 571, 601, 631, 641, 661, 751, 811, 821, 881, 911, 941, 971, 991, 1021, 1031, 1051, 1061, 1091, 1151, 1171, 1181, 1201, 1231, 1291, 1301, 1321, 1361, 1381, 1451, 1471, 1481
OFFSET
1,1
COMMENTS
Complement of A040990 relative to A000040. - Vincenzo Librandi, Sep 19 2012
LINKS
MATHEMATICA
ok[p_]:= Reduce[Mod[x^5 - 23, p] == 0, x, Integers] == False; Select[Prime[Range[300]], ok] (* Vincenzo Librandi, Sep 19 2012 *)
PROG
(Magma) [p: p in PrimesUpTo(1500) | not exists{x : x in ResidueClassRing(p) | x^5 eq 23} ]; // Vincenzo Librandi, Sep 19 2012
CROSSREFS
Sequence in context: A089719 A340444 A109550 * A089721 A089442 A243704
KEYWORD
nonn,easy
AUTHOR
STATUS
approved