OFFSET
1,1
COMMENTS
Coincides for the first 38 terms with A059223 (primes p such that x^37 = 2 has no solution mod p), the first divergence is at the term 11471.
LINKS
Bruno Berselli, Table of n, a(n) for n = 1..1000
MATHEMATICA
Select[Prime[Range[1700]], Mod[#, 37] == 1 &]
Select[Range[1, 14000, 37], PrimeQ]
PROG
(Magma) [p: p in PrimesUpTo(14000) | IsOne(p mod 37)];
(PARI) select(p->p%37==1, primes(10^4)) /* Joerg Arndt, Sep 21 2012 */
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Bruno Berselli, Sep 21 2012
STATUS
approved