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.

A057369 Numbers k that can be expressed as k = w+x = y*z with w*x = (y+z)^2 where w, x, y, and z are all positive integers.

Original entry on oeis.org

16, 18, 25, 45, 50, 80, 234, 250, 261, 425, 1025, 1040, 1530, 1625, 1746, 2320, 4250, 7605, 7794, 9650, 10413, 11050, 11925, 14416, 23425, 24050, 27920, 71298, 75650, 78416, 81693, 129625, 151625, 200720, 221425, 257085, 264618, 338949, 340245, 416050, 488610
Offset: 1

Views

Author

Naohiro Nomoto, Sep 23 2000

Keywords

Examples

			a(1) = 16 = 8+8 = 4*4; 8*8 = (4+4)^2.
		

Crossrefs

Programs

  • PARI
    is(k) = fordiv(k, y, if(issquare(k^2 - 4*(y+k/y)^2), return(1))); 0; \\ Jinyuan Wang, May 01 2021

Extensions

More terms from Jinyuan Wang, May 01 2021