OFFSET
1,1
COMMENTS
See comments on method used in A084917.
The equivalent sequence for x^2 - 3xy + y^2 + k = 0 is A031363.
The equivalent sequence for x^2 - 4xy + y^2 + k = 0 is A084917.
Positive numbers of the form 3x^2 - 7y^2. - Jon E. Schoenfield, Jun 03 2022
LINKS
N. J. A. Sloane et al., Binary Quadratic Forms and OEIS (Index to related sequences, programs, references)
EXAMPLE
12 is in the sequence because x^2 - 5xy + y^2 + 12 = 0 has integer solutions, for example, (x, y) = (2, 8).
MATHEMATICA
Select[Range[350], Length[FindInstance[x^2-5x y+y^2+#==0, {x, y}, Integers]]>0&] (* Harvey P. Dale, Apr 23 2023 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Colin Barker, Feb 06 2014
STATUS
approved