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!)
A302829 a(n) is the number of lattice points in a Cartesian grid between a circle of radius n and an inscribed square whose vertices lie on the coordinate axes. 4
0, 0, 4, 8, 12, 28, 36, 52, 72, 88, 112, 128, 156, 192, 220, 252, 280, 324, 368, 408, 448, 504, 548, 592, 644, 708, 776, 828, 880, 952, 1016, 1096, 1164, 1236, 1324, 1388, 1472, 1548, 1648, 1736, 1808, 1912, 2004, 2116, 2212, 2300, 2408, 2508, 2624, 2728, 2860, 2976, 3076 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
Points are not lying on the borders of the circle and the square.
Note that if the square is rotated so that its sides are parallel to the coordinate axes, the resulting sequence is A303642 instead.
LINKS
Kirill Ustyantsev, Desmos graph calculator
FORMULA
a(n) = A281795(n) - 4*A034856(n). - Andrey Zabolotskiy, Apr 29 2018
PROG
(Python)
for n in range (1, 100):
.count=0
.for x in range (0, n):
..for y in range (0, n):
...if (x*x+y*y<n*n and x+y>n):
....count=count+1
.print(4*count)
(PARI) a(n) = sum(x=-n, +n, sum(y=-n, +n, ((x^2+y^2) < n^2) && ((abs(x)+abs(y))^2 > n^2))); \\ Michel Marcus, May 22 2018
CROSSREFS
Sequence in context: A335992 A233341 A102110 * A055079 A081833 A370134
KEYWORD
nonn
AUTHOR
Kirill Ustyantsev, Apr 27 2018
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 August 14 09:40 EDT 2024. Contains 375159 sequences. (Running on oeis4.)