login
A392298
Primes p such that Pi_{5,2}(p) + Pi_{5,3}(p) - Pi_{5,1}(p) - Pi_{5,4}(p) = 2, where Pi_{m,n}(p) denotes the number of primes q <= p with q == n (mod m).
6
3, 5, 11, 31, 41, 3581, 2082925739, 2082925781, 2082925849, 2082926221, 2082926249, 2082926981, 2082927043, 2082927101, 2082927179, 2082941207, 2082941363, 2082941423, 2082941461, 2082941537, 2082944767, 2082945079, 2082945217, 2082945253, 2082945269, 2082945289, 2082945559, 2082945653
OFFSET
1,1
COMMENTS
In general, assuming the strong form of the Riemann Hypothesis, if 0 < a, b < k are integers, gcd(a, k) = gcd(b, k) = 1, a is a quadratic residue and b is a quadratic nonresidue mod k, then Pi(k,b)(n) > Pi(k,a)(n) occurs more often than not. Pi(a,b)(x) denotes the number of primes in the arithmetic progression a*k + b less than or equal to x. This phenomenon is called "Chebyshev's bias". (See Wikipedia link and especially the links in A007350.)
LINKS
Jianing Song, Table of n, a(n) for n = 1..981 (all terms up to the first region where Pi_{5,2}+Pi_{5,3}-Pi_{5,1}-Pi_{5,4} is negative)
Andrew Granville and Greg Martin, Prime number races, Amer. Math. Monthly, 113 (No. 1, 2006), 1-33.
Wikipedia, Chebyshev's bias
PROG
(PARI) my(i=0); forprime(p=2, 2083000000, i+=kronecker(5, p); if(i==-2, print1(p, ", ")))
CROSSREFS
Cf. prime indices of -1, 0, 1, 2, 3 in A321857: A392295, A392296, A392297, this sequence, A392299.
Sequence in context: A246901 A391801 A236568 * A095184 A048235 A154939
KEYWORD
nonn
AUTHOR
Jianing Song, Jan 08 2026
STATUS
approved