|
Search: id:A130916
|
|
|
| A130916 |
|
Number of primes between n^2 and n^3. |
|
+0 1
|
|
| 0, 0, 2, 5, 12, 21, 36, 53, 79, 107, 143, 187, 235, 288, 356, 428, 510, 595, 699, 810, 929, 1062, 1206, 1358, 1528, 1707, 1898, 2098, 2323, 2561, 2807, 3066, 3340, 3636, 3946, 4283, 4611, 4975, 5351, 5755, 6162, 6587, 7034, 7506, 7998, 8504, 9042, 9587, 10157
(list; graph; listen)
|
|
|
OFFSET
|
0,3
|
|
|
COMMENT
|
There is always a prime between n^2 and n^3 for n > 1. For n = 2, primes 5 and 7 are between 4 and 8. For n > 2, we have the number of primes between n^2 and n^3 ~ n^3/log(n^3) - n^2/log(n^2) = n^2(2n-3)/(6log(n)) -> infinity as n -> infinity. A corollary to this is the number of primes are infinite.
|
|
PROGRAM
|
(PARI) /* Count primes between x^2 and x^3. */ primex2x3(m, n) = { local(x, y, c); for(x=m, n, c=0; for(y=x^2, x^3, if(ispseudoprime(y), c++) ); print(c) ) }
|
|
CROSSREFS
|
Sequence in context: A116728 A095306 A079648 this_sequence A080838 A106331 A116727
Adjacent sequences: A130913 A130914 A130915 this_sequence A130917 A130918 A130919
|
|
KEYWORD
|
nonn
|
|
AUTHOR
|
Cino Hilliard (Hillcino368(AT)hotmail.com), Aug 23 2007
|
|
|
Search completed in 0.002 seconds
|