A216673 Total number of solutions to the equation x^2 + k*y^2 = n with x >= 0, y >= 0, k > 0, or 0 if the number is infinite. (Order does not matter for the equation x^2 + y^2 = n).
0, 2, 2, 0, 3, 3, 3, 5, 0, 4, 4, 6, 6, 4, 4, 0, 7, 7, 6, 8, 7, 6, 5, 8, 0, 6, 8, 10, 9, 6, 7, 11, 10, 8, 6, 0, 11, 7, 7, 12, 12, 7, 9, 11, 13, 8, 7, 13, 0, 10, 9, 16, 12, 12, 9, 12, 14, 10, 9, 12, 15, 8, 11, 0, 15, 10, 11, 16, 13, 11, 9, 19, 18, 10, 11, 18, 13
Offset: 1
Keywords
Crossrefs
Programs
-
PARI
for(n=1, 100, sol=0; for(k=1, n, for(x=0, n, if((issquare(n-k*x*x)&&n-k*x*x>=0&&k>=2)||(issquare(n-x*x)&&n-x*x>=0&&k==1&&x*x<=n-x*x), sol++))); if(issquare(n),print1(0", "),print1(sol", "))) /* V. Raman, Oct 16 2012 */
Extensions
Ambiguity in name corrected by V. Raman, Oct 16 2012
Comments