cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A210447 Number of primes <= Im(rho_n), where rho_n is the n-th nontrivial zero of Riemann zeta function.

Original entry on oeis.org

6, 8, 9, 10, 11, 12, 12, 14, 15, 15, 16, 16, 17, 17, 18, 19, 19, 20, 21, 21, 22, 22, 23, 23, 23, 24, 24, 24, 25, 26, 27, 27, 28, 29, 29, 30, 30, 30, 30, 30, 30, 31, 31, 32, 32, 32, 33, 34, 34, 34, 34, 34, 35, 35, 36, 36, 37, 37, 37, 38, 38, 39, 39, 39, 40, 40
Offset: 1

Views

Author

Omar E. Pol, Feb 03 2013

Keywords

Comments

The zeros -2, -4, -6, ... of the Riemann zeta function are considered trivial. The nontrivial zeros are in the "critical strip" 0 < Re(rho_n) < 1. All of the known nontrivial zeros have real part 1/2. In this sequence, we count the prime numbers less than or equal to the imaginary part of these nontrivial zeros.
The Riemann hypothesis (currently unproven) states that all of the nontrivial zeros have real part 1/2.

Examples

			a(8) = 12 because the 8th nontrivial zero of Riemann zeta function is 0.5 + (40.91...)i and there are 12 primes less than or equal to 40.91...; they are 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, and 37.
		

Crossrefs

Programs

  • Mathematica
    f[n_] := PrimePi@ Im@ ZetaZero@ n; Array[f, 70] (* Robert G. Wilson v, Jan 27 2015 *)