OFFSET
1,1
COMMENTS
Apart from the first term, primes p such that 3 is not a square mod p.
Apart from the first term, identical to A003630.
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..1000
MATHEMATICA
Select[Prime@Range[120], JacobiSymbol[3, #] == -1 &] (* Vincenzo Librandi, Sep 09 2012 *)
PROG
(PARI) isok(p) = isprime(p) && (kronecker(3, p) == -1); \\ Michel Marcus, Jan 24 2023
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
STATUS
approved