OFFSET
1,4
COMMENTS
A Gaussian integer z = x+iy is in the first quadrant if x > 0, y >= 0. Just one of the 4 associates z, -z, i*z, -i*z is in the first quadrant.
LINKS
EXAMPLE
The distinct first-quadrant divisors of 4 are 1, 1+i, 2, 2+2*i, 4, with sum 10+3*i, so a(4) = 3.
MATHEMATICA
Table[Im[Plus@@Divisors[n, GaussianIntegers -> True]], {n, 65}] (* Alonso del Arte, Jan 24 2012; typo fixed by Virgile Andreani, Jul 10 2016 *)
PROG
(PARI) A078911(n, S=[])=sumdiv(n*I, d, if(real(d)&imag(d)&!setsearch(S, d=vecsort(abs([real(d), imag(d)]))), S=setunion(S, [d]); (d[1]+d[2])>>(d[1]==d[2]))) \\ M. F. Hasler, Nov 22 2007
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Jan 11 2003
EXTENSIONS
More terms from Vladeta Jovovic, Jan 11 2003
STATUS
approved