A286888 Floor of the average gap between consecutive primes among the first n primes, for n > 1.
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
Keywords
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.
Links
- Robert Israel, Table of n, a(n) for n = 2..10000
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
Comments