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!)
A095875 Number of lattice points on graph of parabola y >= x^2 with y <= n. 2
0, 1, 4, 7, 10, 15, 20, 25, 30, 35, 42, 49, 56, 63, 70, 77, 84, 93, 102, 111, 120, 129, 138, 147, 156, 165, 176, 187, 198, 209, 220, 231, 242, 253, 264, 275, 286, 299, 312, 325, 338, 351, 364, 377, 390, 403, 416, 429, 442, 455, 470, 485, 500, 515, 530, 545, 560 (list; graph; refs; listen; history; text; internal format)
OFFSET
-1,3
COMMENTS
Positive terms are partial sums of A001650, n appears n times (n odd).
a(n) is typically larger than the analytical integral (4/3)n^(3/2) of the area because integer points right on the contour contribute with too much statistical weight in the Monte Carlo sense of area estimation. - R. J. Mathar, Nov 06 2006
LINKS
FORMULA
a(n+1) = a(n)+1+2*floor(sqrt(n+1)) = a(n)+A001650(n+2). - R. J. Mathar, Nov 06 2006
G.f.: theta_3(x)/(1 - x)^2, where theta_() is the Jacobi theta function. - Ilya Gutkovskiy, Jan 18 2018
EXAMPLE
a(2) = 7 because there are exactly seven points with integer coordinates within the graph of y >= x^2 and bounded by the line y = 2: (0,0), (-1,1), (0,1), (1,1), (-1,2), (0,2) and (1,2).
MAPLE
A095875 := proc(n) local y; sum(1+2*floor(sqrt(y)), y=0..n) ; end: for n from -1 to 60 do printf("%d, ", A095875(n)) ; od ; # R. J. Mathar, Nov 06 2006
PROG
(PARI) a(n) = sum(k=0, n, 1+2*sqrtint(k)); \\ corrected by Michel Marcus, Feb 07 2023
for(n=-1, 100, print1(a(n), ", "))
CROSSREFS
Cf. A001650 (first differences).
Sequence in context: A126891 A310705 A310706 * A071408 A137461 A137379
KEYWORD
nonn
AUTHOR
Rick L. Shepherd, Jun 10 2004
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 25 08:27 EDT 2024. Contains 371964 sequences. (Running on oeis4.)