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.

A217564 Number of primes between prime(n)/2 and prime(n+1)/2.

Original entry on oeis.org

0, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 0, 1, 0, 1, 0, 1, 0, 0, 1, 1, 1, 1, 0, 0, 1, 0, 0, 2, 0, 1, 0, 2, 0, 0, 1, 1, 0, 1, 0, 0, 0, 1, 0, 2, 2, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 2, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 1, 1
Offset: 1

Views

Author

Hans Havermann, Oct 06 2012

Keywords

Comments

Conjecture: this sequence is unbounded, as implied by Dickson's conjecture. - Charles R Greathouse IV, Oct 09 2012
Conjecture: 0 appears infinitely often. - Jon Perry, Oct 10 2012
First differences of A079952. - Peter Munn, Oct 19 2017

Examples

			a(30) = 2 because there are two primes between prime(30)/2 [=113/2] and prime(31)/2 [=127/2]; i.e., the numbers 59 and 61.
		

Crossrefs

Cf. A215237 (location of first n).
A164368 lists the prime(n) corresponding to the zero terms.

Programs

  • Mathematica
    q = 2; Table[p = q; q = NextPrime[p]; Length[Position[PrimeQ[Range[p + 1, q - 1, 2]/2], True]], {105}]
    Table[PrimePi[Prime[n + 1]/2] - PrimePi[Prime[n]/2], {n, 105}] (* Alonso del Arte, Oct 08 2012 *)

Formula

a(n) = pi(prime(n + 1)/2) - pi(prime(n)/2), where pi is the prime counting function and prime(n) is the n-th prime.
Equivalently, a(n) = A079952(n+1) - A079952(n). - Peter Munn, Oct 19 2017
The average order of a(n) is 1/2, that is, a(1) + a(2) + ... + a(n) ~ n/2. - Charles R Greathouse IV, Oct 09 2012