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

A040084
Primes p such that x^3 = 19 has no solution mod p.
2
7, 13, 31, 37, 43, 61, 67, 73, 79, 103, 139, 157, 163, 193, 199, 211, 223, 229, 241, 331, 337, 349, 367, 379, 397, 433, 439, 457, 463, 499, 523, 541, 547, 571, 601, 607, 619, 631, 643, 673, 709, 727, 739, 751
OFFSET
1,1
COMMENTS
Complement of A040083 relative to A000040. - Vincenzo Librandi, Sep 17 2012
LINKS
MATHEMATICA
ok[p_]:= Reduce[Mod[x^3 - 19, p] == 0, x, Integers] == False; Select[Prime[Range[200]], ok] (* Vincenzo Librandi, Sep 17 2012 *)
PROG
(Magma) [p: p in PrimesUpTo(1000) | not exists{x : x in ResidueClassRing(p) | x^3 eq 19} ]; // Vincenzo Librandi, Sep 17 2012
CROSSREFS
Sequence in context: A273757 A073473 A272407 * A151723 A046139 A023243
KEYWORD
nonn,easy
AUTHOR
STATUS
approved