login
A230263
Number of nonnegative integer solutions to the equation x^2 - 4*y^2 = n.
4
1, 0, 0, 1, 1, 0, 0, 0, 2, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 2, 0, 0, 0, 2, 0, 0, 1, 1, 0, 0, 1, 2, 0, 0, 2, 1, 0, 0, 0, 1, 0, 0, 1, 3, 0, 0, 1, 2, 0, 0, 1, 1, 0, 0, 0, 2, 0, 0, 2, 1, 0, 0, 2, 2, 0, 0, 1, 2, 0, 0, 0, 1, 0, 0, 1, 2, 0, 0, 1, 3, 0, 0, 2, 2, 0
OFFSET
1,9
COMMENTS
For (x, y) to be a solution to the more general equation x^2 - d^2*y^2 = n, it can be shown that n-f^2 must be divisible by 2*f*d, where f is a divisor of n not exceeding sqrt(n). Then y = (n-f^2)/(2*f*d) and x = d*y+f.
LINKS
EXAMPLE
a(9) = 2 because x^2 - 4*y^2 = 9 has two nonnegative integer solutions: (x,y) = (5,2) and (3,0).
PROG
(PARI) a(n) = sumdiv(n, f, f^2<=n && (n-f^2)%(4*f)==0);
(Magma) d:=2; solutions:=func<i | [f: f in Divisors(i) | f le Isqrt(i) and IsZero((i-f^2) mod (2*f*d))]>; [#solutions(n): n in [1..100]]; // Bruno Berselli, Oct 16 2013
CROSSREFS
KEYWORD
nonn
AUTHOR
Colin Barker, Oct 14 2013
STATUS
approved