A096451 Primes p such that the number of primes less than p equal to 1 mod 4 is two less than the number of primes less than p equal to 3 mod 4.
13, 29, 37, 53, 61, 71, 79, 101, 107, 113, 131, 139, 151, 163, 199, 359, 409, 421, 433, 443, 457, 479, 1223, 1231, 1249, 1277, 1283, 1291, 1301, 1307, 1399, 1423, 1439, 8699, 8779, 26821, 26951, 26959, 26987, 27011, 27031, 615731, 615869, 615887
Offset: 1
Keywords
Links
- Robert Israel, Table of n, a(n) for n = 1..811
- Andrew Granville and Greg Martin, Prime number races, Amer. Math. Monthly, 113 (No. 1, 2006), 1-33.
Programs
-
Maple
c1:= 0; c3:= 0: p:= 2: count:= 0: Res:= NULL: while count < 100 do p:= nextprime(p); if c1 = c3 - 2 then count:= count+1; Res:= Res, p; fi; if p mod 4 = 1 then c1:=c1+1 else c3:= c3+1 fi od: Res; # Robert Israel, Nov 07 2018
Extensions
More terms from Joshua Zucker, May 03 2006
Comments