OFFSET
1,1
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..1000
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
KEYWORD
nonn,easy
AUTHOR
Klaus Brockhaus, Jan 23 2001
STATUS
approved