OFFSET
1,1
COMMENTS
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..1000
MATHEMATICA
ok[p_]:= Reduce[Mod[x^10 + 2, p] == 0, x, Integers] =!= False; Select[Prime[Range[500]], ok] (* Vincenzo Librandi, Sep 15 2012 *)
PROG
(PARI)
forprime(p=2, 2000, if([]~!=polrootsmod(x^10+2, p), print1(p, ", "))); print();
/* Joerg Arndt, Jun 24 2012 */
(Magma) [p: p in PrimesUpTo(1200) | exists(t){x : x in ResidueClassRing(p) | x^10 eq - 2}]; // Vincenzo Librandi, Sep 15 2012
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
More terms from Joerg Arndt, Jul 27 2011
STATUS
approved