OFFSET
1,1
COMMENTS
a(519) is a noteworthy record high value; a(n) < 13 for all n < 519, and a(n) < 19 for all n < 9363 except that a(519)=19.
LINKS
Jon E. Schoenfield, Table of n, a(n) for n = 1..10000
EXAMPLE
The 1st 100 positive integers, 1..100, include 25 primes;
the 2nd 100 positive integers, 101..200, include 21 primes;
the 3rd 100 positive integers, 201..300, include 16 primes;
the 4th 100 positive integers, 301..400, include 16 primes;
the 5th 100 positive integers, 401..500, include 17 primes.
The sequence 25, 21, 16, 16, 17, is nonincreasing until we reach the 5th term, 17, so a(100) = 5.
Considering the positive integers in consecutive intervals of length 519, instead (i.e., [1,519], [2,1038], [3,1557], ...) and counting the primes in each interval, we get a sequence that is nonincreasing until we reach the 19th term, since the 19th interval, [9343,9861], contains more primes than does the 18th, so a(519)=19.
MAPLE
a:= proc(n) uses numtheory; local i, j, k; i:= n;
for k do j:= pi(k*n)-pi((k-1)*n);
if j>i then break else i:=j fi
od; k
end:
seq(a(n), n=1..100); # Alois P. Heinz, Mar 21 2021
MATHEMATICA
a[n_] := Module[{i = n, j, k},
For[k = 1, True, k++, j = PrimePi[k*n] - PrimePi[(k-1)*n];
If[j > i, Break[], i = j]]; k];
Array[a, 100] (* Jean-François Alcover, Jul 01 2021, after Alois P. Heinz *)
PROG
(Python)
from sympy import primepi
def A342068(n):
k, a, b, c = 2, 0, primepi(n), primepi(2*n)
while a+c <= 2*b:
k += 1
a, b, c = b, c, primepi(k*n)
return k # Chai Wah Wu, Mar 25 2021
CROSSREFS
KEYWORD
nonn
AUTHOR
Jon E. Schoenfield, Mar 21 2021
STATUS
approved