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

A059244
Primes p such that x^19 = 2 has no solution mod p.
2
191, 229, 419, 457, 571, 647, 761, 1217, 1483, 1559, 1597, 1787, 1901, 2053, 2129, 2243, 2281, 2357, 2699, 2851, 2927, 3041, 3079, 3307, 3877, 4219, 4409, 4447, 4523, 4561, 4637, 4751, 4789, 4903, 5701, 6271, 6689, 6803, 6841, 6917, 7069, 7297, 7411
OFFSET
1,1
COMMENTS
Complement of A049551 relative to A000040.
LINKS
MATHEMATICA
ok[p_]:= Reduce[Mod[x^19 - 2, p] == 0, x, Integers] == False; Select[Prime[Range[4000]], ok] (* Vincenzo Librandi, Sep 20 2012 *)
PROG
(Magma) [p: p in PrimesUpTo(7500) | not exists{x : x in ResidueClassRing(p) | x^19 eq 2} ]; // Vincenzo Librandi, Sep 20 2012
CROSSREFS
Sequence in context: A139650 A139977 A141868 * A136068 A045141 A046010
KEYWORD
easy,nonn
AUTHOR
Klaus Brockhaus, Jan 21 2001
STATUS
approved