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

A040158
Primes p such that x^4 = 23 has no solution mod p.
2
3, 5, 13, 17, 31, 37, 47, 53, 59, 61, 71, 73, 89, 97, 101, 109, 113, 127, 131, 137, 139, 149, 151, 157, 163, 167, 179, 181, 193, 211, 223, 229, 239, 241, 271, 281, 293, 307, 311, 313, 331, 337, 347, 353, 373, 389
OFFSET
1,1
COMMENTS
Complement of A040154 relative to A000040. - Vincenzo Librandi, Sep 18 2012
LINKS
MATHEMATICA
ok[p_]:= Reduce[Mod[x^4 - 23, p] == 0, x, Integers] == False; Select[Prime[Range[100]], ok] (* Vincenzo Librandi, Sep 18 2012 *)
PROG
(Magma) [p: p in PrimesUpTo(500) | not exists{x : x in ResidueClassRing(p) | x^4 eq 23} ]; // Vincenzo Librandi, Sep 18 2012
CROSSREFS
Sequence in context: A060192 A065311 A206549 * A147490 A266234 A180008
KEYWORD
nonn,easy
AUTHOR
STATUS
approved