login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A332021
Elements of the set {m > 0: m is a quadratic nonresidue modulo prime(m)}.
2
2, 3, 6, 7, 8, 10, 11, 13, 15, 18, 21, 24, 26, 27, 28, 32, 33, 39, 41, 44, 45, 48, 50, 52, 54, 55, 56, 58, 60, 62, 65, 68, 69, 71, 74, 75, 79, 83, 84, 85, 88, 90, 93, 95, 101, 107, 108, 109, 110, 114, 116, 117, 118, 119, 120, 122, 123, 124, 126, 129, 130, 131, 133, 135, 139
OFFSET
1,1
COMMENTS
This is the complement sequence of A332020.
The conjecture in A332020 implies that the number of terms not exceeding x is about x/2 asymptotically.
EXAMPLE
a(1) = 2 since 2 is a quadratic nonresidue modulo prime(2) = 3.
a(2) = 3 since 3 is a quadratic nonresidue modulo prime(3) = 5.
MATHEMATICA
tab = {}; Do[If[JacobiSymbol[n, Prime[n]] == -1, tab = Append[tab, n]], {n, 140}]; tab
PROG
(PARI) isok(m) = kronecker(m, prime(m)) !=1; \\ Michel Marcus, Feb 06 2020
CROSSREFS
KEYWORD
nonn
AUTHOR
Zhi-Wei Sun, Feb 04 2020
STATUS
approved