OFFSET
2,4
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).
LINKS
Robert Israel, Table of n, a(n) for n = 2..10000
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
EXAMPLE
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.
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}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Andres Cicuttin, Jul 22 2017
STATUS
approved