OFFSET
1,1
COMMENTS
Primes p such that 3 is a primitive root modulo p (i.e., p is in A019334) and that p == 1 (mod 3).
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
Eric Weisstein's World of Mathematics, Artin's constant.
Wikipedia, Artin's conjecture on primitive roots.
PROG
(PARI) forprime(p=5, 2000, if(znorder(Mod(3, p))==(p-1) && p%3==1, print1(p, ", ")))
CROSSREFS
KEYWORD
nonn
AUTHOR
Jianing Song, Aug 30 2019
STATUS
approved