cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A238240 Positive integers n such that x^2 - 20xy + y^2 + n = 0 has integer solutions.

Original entry on oeis.org

18, 35, 50, 63, 72, 74, 83, 90, 95, 98, 99, 107, 140, 162, 171, 200, 215, 227, 252, 266, 275, 288, 296, 315, 332, 347, 359, 360, 362, 371, 380, 387, 392, 395, 396, 407, 428, 450, 491, 495, 530, 539, 560, 567, 602, 623, 626, 635, 648, 666, 684, 695, 711, 722, 743, 747, 755, 770, 791, 794, 800, 810
Offset: 1

Views

Author

Colin Barker, Feb 20 2014

Keywords

Comments

Positive integers n such that x^2 - 99 y^2 + n = 0 has integer solutions. - Robert Israel, Oct 22 2024

Examples

			63 is in the sequence because x^2 - 20xy + y^2 + 63 = 0 has integer solutions, for example (x, y) = (1, 16).
		

Crossrefs

Cf. A075839 (n = 18), A221763 (n = 63), A198947 (n = 90), A001085 (n = 99).

Programs

  • Maple
    filter:= t -> [isolve(99*y^2 - z^2 = t)] <> []:
    select(filter, [$1..1000]); # Robert Israel, Oct 22 2024

Extensions

Corrected by Robert Israel, Oct 22 2024