The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A036700 Number of Gaussian integers z=a+bi satisfying |z|<=n, a>=0, 0<=b<a. 3
0, 1, 2, 4, 7, 11, 15, 20, 26, 33, 41, 49, 57, 68, 79, 91, 102, 115, 129, 144, 160, 175, 193, 210, 228, 249, 269, 290, 311, 333, 357, 380, 406, 431, 458, 487, 512, 542, 570, 603, 634, 664, 697, 730, 766, 802, 835, 872, 909, 948, 988 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
Partial sums of A036701. - Sean A. Irvine, Nov 22 2020
MAPLE
A036700 := proc(n)
local a, x, y ;
a := 0 ;
for x from 0 do
if x^2 > n^2 then
return a;
fi ;
for y from 0 to x-1 do
if y^2+x^2 <= n^2 then
a := a+1 ;
end if;
end do;
end do:
end proc: # R. J. Mathar, Oct 29 2011
CROSSREFS
Sequence in context: A247184 A025703 A025709 * A025719 A025696 A077169
KEYWORD
nonn
AUTHOR
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 May 21 04:19 EDT 2024. Contains 372720 sequences. (Running on oeis4.)