OFFSET
0,3
COMMENTS
Also number of primes <= n^2 since n^2 is not prime.
Also the number of primes contained within an n X n square spiral. - William A. Tedeschi, Mar 03 2008
For large n, these numbers closely approximate the sum of primes less than n. For example, n = 10^10, sum of primes < n = 2220822432581729238. The number of primes < (10^10)^2 = 10^20 = 2220819602560918840. The error is 0.0000012743... The derivation of this is in the link Sum of Primes. - Cino Hilliard, Jun 09 2008
A061265(a(n)) = 1 for n > 1. - Reinhard Zumkeller, Apr 15 2013
From Zhi-Wei Sun, Feb 17 2014: (Start)
Conjecture:
(i) The sequence a(n)^(1/n) (n = 3, 4, ...) is strictly decreasing (to the limit 1).
(ii) If n > 0 is not among 25, 35, 44, 46, 105, then the interval [a(n), a(n+1)] contains at least one prime. (End)
A classical conjecture of Legendre asserts that a(n) < a(n+1) for all n > 0.
Conjecture: All the numbers Sum_{i=j,...,k} 1/a(i) with 1 < j <= k have pairwise distinct fractional parts. - Zhi-Wei Sun, Sep 24 2015
REFERENCES
Zhi-Wei Sun, Problems on combinatorial properties of primes, in: M. Kaneko, S. Kanemitsu and J. Liu (eds.), Number Theory: Plowing and Starring through High Wave Forms, Proc. 7th China-Japan Seminar (Fukuoka, Oct. 28 - Nov. 1, 2013), Ser. Number Theory Appl., Vol. 11, World Sci., Singapore, 2015, pp. 169-187. (See Conjectures 2.14-2.16.)
LINKS
T. D. Noe, Table of n, a(n) for n = 0..1000
Cino Hilliard, Sum of Primes.
Zhi-Wei Sun, Problems on combinatorial properties of primes, arXiv:1402.6641 [math.NT], 2014.
Wikipedia, Legendre's conjecture.
FORMULA
a(n) ~ 1/2 * n^2/log n. - Charles R Greathouse IV, Apr 26 2012
EXAMPLE
a(2)=2 because the only primes < 4 are 2 and 3.
MAPLE
A038107 := proc(n) numtheory[pi]( n^2) ; end: seq(A038107(n), n=0..100) ; # R. J. Mathar, Jun 22 2009
MATHEMATICA
Table[PrimePi[n^2], {n, 0, 100}] (* Ray Chandler, Oct 22 2005 *)
PROG
(Sage) [prime_pi(n^2) for n in range(0, 59)] # Zerinvary Lajos, Jun 06 2009
(Haskell)
a038107 0 = 0
a038107 n = a000720 $ a000290 n
-- Reinhard Zumkeller, Apr 15 2013, Nov 01 2011
(PARI) a(n)=primepi(n^2) \\ Charles R Greathouse IV, Apr 26 2012
CROSSREFS
KEYWORD
nonn
AUTHOR
Joe K. Crump (joecr(AT)carolina.rr.com)
EXTENSIONS
Extended by Ray Chandler, Oct 22 2005
STATUS
approved