login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A230772 Number of primes in the half-open interval [n, 3*n/2). 1
0, 1, 1, 1, 2, 1, 1, 1, 2, 2, 2, 2, 3, 2, 2, 3, 3, 2, 2, 2, 3, 3, 3, 2, 3, 3, 3, 4, 5, 4, 4, 4, 4, 4, 4, 5, 5, 4, 4, 5, 6, 5, 5, 4, 5, 5, 5, 5, 6, 6, 6, 6, 7, 6, 6, 7, 7, 7, 7, 7, 7, 6, 6, 6, 7, 7, 7, 7, 8, 8, 8, 8, 9, 8, 8, 9, 9, 9, 9, 8, 8, 8, 8, 7, 8, 8, 8, 9, 9, 8, 8, 9, 10, 10, 10 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,5
COMMENTS
Suggested by Bertrand's postulate (actually a theorem): for all x > 1, there is a prime number between x and 2x (see related references and links mentioned in A060715, A166968 and A143227).
For all n > 1, a(n)>=1 (that is, there is always a prime between n and 3*n/2); this can be seen using the stronger result proved by Jitsuro Nagura in 1952: for n >= 25, there is always a prime between n and (1 + 1/5)n.
Successive terms vary by no more than +/- one unit.
LINKS
Jean-Christophe Hervé, Table of n, a(n) for n = 1..6667
Jitsuro Nagura, On the interval containing at least one prime number, Proc. Japan Acad. 28, 1952, 177-181.
FORMULA
a(n) = sum(A010051(n+k): 0<=k<3*n/2).
a(n) = A000720(ceiling(1.5*n)-1) - A000720(n-1).
EXAMPLE
a(29)=5 since five primes (29,31,37,41,43) are located between 29 and 43.5.
MATHEMATICA
a[n_]:=PrimePi[Ceiling[1.5*n]-1]-PrimePi[n-1]; Table[a[n], {n, 2, 100}]
PROG
(R)
nvalues <- 1000
A <- vector('numeric', nvalues)
A[1] <- 0
# primepi = table of the primepi sequence A000720
for(i in 2:nvalues) A[i] <- primepi[ceiling(1.5*i)-1]-primepi[i-1]
CROSSREFS
Sequence in context: A341974 A029342 A364459 * A029408 A029415 A339382
KEYWORD
nonn,easy
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)