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.

A286888 Floor of the average gap between consecutive primes among the first n primes, for n > 1.

Original entry on oeis.org

1, 1, 1, 2, 2, 2, 2, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5
Offset: 2

Views

Author

Andres Cicuttin, Jul 22 2017

Keywords

Comments

The minimum n to evaluate a gap is 2, then n must be larger than 1. The average gap between consecutive primes computed over the first n primes is given by (1/(n-1))*Sum_{i=1..n-1} (prime(i+1) - prime(i)) or simply by (prime(n) - 2)/(n-1).

Examples

			a(3)=1 because the two gaps between consecutive primes among the first three primes are 3-2 = 1 and 5-3 = 2, the average gap is (1+2)/2 = 3/2, and the floor of 3/2 is 1.
a(4)=1 because the three gaps between consecutive primes among the first four primes are 3-2 = 1, 5-3 = 2 and 7-5 = 2, the average gap is (1+2+2)/3 = 5/3, and the floor of 5/3 is 1.
		

Crossrefs

Cf. A001223.

Programs

  • Maple
    seq(floor((ithprime(n)-2)/(n-1)),n=2..200); # Robert Israel, Aug 04 2017
  • Mathematica
    nmax=132;
    Table[Floor[(Prime[n] - 2)/(n - 1)], {n, 2, nmax}]

Formula

a(n)= floor((prime(n) - 2)/(n - 1)).
floor(log(n) + log(log(n)) - 1) <= a(n) <= floor(log(n) + log(log(n)) + 1). - Robert Israel, Aug 04 2017