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

A059351
Primes p such that x^39 = 2 has no solution mod p.
1
7, 13, 19, 37, 53, 61, 67, 73, 79, 97, 103, 131, 139, 151, 157, 163, 181, 193, 199, 211, 241, 271, 313, 331, 337, 349, 367, 373, 379, 409, 421, 443, 463, 487, 521, 523, 541, 547, 571, 577, 599, 607, 613, 619, 631, 661, 673, 677, 709, 751, 757, 769, 787, 823
OFFSET
1,1
COMMENTS
Complement of A049571 relative to A000040.
LINKS
MATHEMATICA
ok[p_] := Reduce[Mod[x^39 - 2, p] == 0, x, Integers] == False; Select[Prime[Range[150]], ok ] (* Vincenzo Librandi, Sep 20 2012 *)
PROG
(Magma) [p: p in PrimesUpTo(850) | forall{x: x in ResidueClassRing(p) | x^39 ne 2 }]; // Vincenzo Librandi, Sep 20 2012
CROSSREFS
Sequence in context: A078863 A263091 A320533 * A320532 A059262 A059640
KEYWORD
nonn,easy
AUTHOR
Klaus Brockhaus, Jan 27 2001
STATUS
approved