OFFSET
1,1
COMMENTS
Presumably this is also Primes congruent to 1 mod 53 (A212377). - N. J. A. Sloane, Jul 11 2008
Not so. The smallest counterexample is the prime 91373: 91373 == 1 (mod 53), but 2246^53 == 2 (mod 91373), 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^53 - 2, p] == 0, x, Integers] == False; Select[Prime[Range[2500]], ok] (* Vincenzo Librandi, Sep 20 2012 *)
PROG
(Magma) [p: p in PrimesUpTo(20000) | not exists{x: x in ResidueClassRing(p) | x^53 eq 2}]; // Vincenzo Librandi, Sep 20 2012
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Klaus Brockhaus, Jan 23 2001
STATUS
approved