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

A059256
Primes p such that x^29 = 2 has no solution mod p.
3
59, 233, 349, 523, 929, 1103, 1277, 1451, 1567, 1741, 1973, 2089, 2437, 2843, 3307, 3539, 4003, 4177, 4409, 4583, 4931, 5279, 5569, 5743, 5801, 6091, 6323, 6961, 7019, 7193, 7309, 7541, 8179, 8237, 8353, 8527, 8933, 9049, 9281, 9397, 9629, 9803
OFFSET
1,1
COMMENTS
Complement of A049561 relative to A000040.
LINKS
MATHEMATICA
ok[p_]:= Reduce[Mod[x^29 - 2, p] == 0, x, Integers] == False; Select[Prime[Range[1300]], ok] (* Vincenzo Librandi, Sep 20 2012 *)
PROG
(Magma) [p: p in PrimesUpTo(10000) | not exists{x : x in ResidueClassRing(p) | x^29 eq 2} ]; // Vincenzo Librandi, Sep 20 2012
CROSSREFS
Sequence in context: A142092 A142215 A141977 * A158666 A060331 A158670
KEYWORD
nonn,easy
AUTHOR
Klaus Brockhaus, Jan 23 2001
STATUS
approved