A028505 Number of primes <= 100*n.
25, 46, 62, 78, 95, 109, 125, 139, 154, 168, 184, 196, 211, 222, 239, 251, 266, 278, 290, 303, 317, 327, 342, 357, 367, 378, 393, 407, 419, 430, 442, 452, 463, 478, 489, 503, 516, 528, 539, 550, 565, 574, 590, 599, 610, 622, 634, 646, 654, 669, 681, 692, 702
Offset: 1
Keywords
References
- Fred W. Helenius (fredh(AT)ix.netcom.com), posting to newsgroup rec.puzzles, Dec. 1997.
Links
- Robert G. Wilson v, Table of n, a(n) for n = 1..10000
- J. Betrema, Table et repartition des nombres premiers inferieurs a 10000
- A. Booker, The Nth Prime Page
- Thomas Ehrenborg, Gauss Circle Primes, arXiv:2502.06804 [math.GM], 2025. See Table 2 p. 4.
- Thomas R. Nicely, Some Results of Computational Research in Prime Numbers [See local copy in A007053]
- Tomás Oliveira e Silva, Tables of values of pi(x) and of pi2(x)
Crossrefs
Programs
-
Macsyma
for n:1 through 50 do print(prime_pi(100*n));
-
Mathematica
Table[ PrimePi[ n*100 ], {n, 55}] (* Robert G. Wilson v, Jan 29 2003 *)
-
PARI
a(n)=primepi(100*n) \\ Charles R Greathouse IV, Apr 28 2015
Comments