OFFSET
1,1
COMMENTS
Presumably this is also Primes congruent to 1 mod 61 (A212378). - N. J. A. Sloane, Jul 11 2008
Regarding the first comment, the smallest counterexample is the prime 34039: 34039 == 1 (mod 61), but 1155^61 == 2 (mod 34039), therefore this prime is not in the sequence. - Bruno Berselli, Sep 20 2012
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..1000
MATHEMATICA
ok[p_]:= Reduce[Mod[x^61 - 2, p] == 0, x, Integers] == False; Select[Prime[Range[5000]], ok] (* Vincenzo Librandi, Sep 20 2012 *)
PROG
(Magma) [p: p in PrimesUpTo(19000) | forall{x: x in ResidueClassRing(p) | x^61 ne 2} ]; // Vincenzo Librandi, Sep 20 2012
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Klaus Brockhaus, Jan 20 2001
STATUS
approved