login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A304651
Number of coprime pairs (x,y) with x^2 + y^2 <= n.
3
0, 4, 8, 8, 8, 16, 16, 16, 16, 16, 24, 24, 24, 32, 32, 32, 32, 40, 40, 40, 40, 40, 40, 40, 40, 48, 56, 56, 56, 64, 64, 64, 64, 64, 72, 72, 72, 80, 80, 80, 80, 88, 88, 88, 88, 88, 88, 88, 88, 88, 96, 96, 96, 104, 104, 104, 104, 104, 112, 112, 112, 120, 120, 120, 120
OFFSET
0,2
LINKS
FORMULA
a(n) = a(n-1) + 4*A000089(n) for n > 0.
EXAMPLE
a(2) = 8 counts (x,y) = (-1,-1), (-1,0), (-1,1), (0,-1), (0,1), (1,-1), (1,0) and (1,1).
MATHEMATICA
a89[n_] := a89[n] = Product[{p, e} = pe; Which[p < 3 && e == 1, 1, p == 2 && e > 1, 0, Mod[p, 4] == 1, 2, Mod[p, 4] == 3, 0, True, a89[p^e]], {pe, FactorInteger[n]}];
a[n_] := a[n] = If[n == 0, 0, a[n-1] + 4 a89[n]];
Table[a[n], {n, 0, 100}] (* Jean-François Alcover, Aug 02 2023 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, May 26 2018
STATUS
approved