A197298 The Riemann primes of the theta type and index 2.
2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 43, 47, 59, 73, 97, 107, 109, 139, 179, 233, 263, 277, 283, 337, 347, 409, 419, 547, 643, 683, 809, 811, 821, 823, 863, 983, 991, 997, 1031, 1193
Offset: 1
Keywords
Links
- Dana Jacobsen, Table of n, a(n) for n = 1..173
- M. Planat and P. Solé, Efficient prime counting and the Chebyshev primes arXiv:1109.6489 [math.NT], 2011.
Programs
-
Perl
use ntheory ":all"; my($max,$f)=(0); forprimes { $f=abs(chebyshev_theta($**2)-$**2); if ($f > $max) { say; $max=$f; } } 10000; # Dana Jacobsen, Dec 29 2015
Comments