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

A059265
Primes p such that x^14 = 2 has no solution mod p.
2
3, 5, 11, 13, 19, 29, 37, 43, 53, 59, 61, 67, 71, 83, 101, 107, 109, 113, 127, 131, 139, 149, 157, 163, 173, 179, 181, 197, 211, 227, 229, 239, 251, 269, 277, 281, 283, 293, 307, 317, 331, 337, 347, 349, 373, 379, 389, 397, 419, 421, 443, 449, 461, 463, 467
OFFSET
1,1
COMMENTS
Complement of A049546 relative to A000040.
LINKS
MATHEMATICA
Select[ Prime@Range[2, 93], FreeQ[ Mod[x^14 /. x -> Range[ # ], # ], 2] &] (* Robert G. Wilson v, Dec 15 2005 *)
ok[p_] := Reduce[Mod[x^14 - 2, p] == 0, x, Integers] == False; Select[Prime[Range[100]], ok] (* Vincenzo Librandi, Sep 20 2012 *)
PROG
(Magma) [p: p in PrimesUpTo(500) | not exists{x: x in ResidueClassRing(p) | x^14 eq 2} ]; // Vincenzo Librandi, Sep 20 2012
CROSSREFS
Sequence in context: A066652 A165354 A059638 * A059314 A059336 A059350
KEYWORD
nonn,easy
AUTHOR
Klaus Brockhaus, Jan 23 2001
STATUS
approved