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.

A063663 Numbers which can be written as b^2*c^2*(b^2+c^2).

Original entry on oeis.org

0, 2, 20, 90, 128, 272, 468, 650, 1280, 1332, 1458, 2450, 2900, 3600, 4160, 5760, 6642, 7650, 8192, 10100, 10388, 14580, 14762, 16400, 17408, 20880, 25578, 27540, 28730, 29952, 31250, 38612, 41600, 42048, 50850, 50960, 54900, 60500, 65610
Offset: 1

Views

Author

Henry Bottomley, Jul 25 2001

Keywords

Examples

			468 is in the sequence since 2^2*3^2*(2^2+3^2) = 4*9*13 = 468.
		

Crossrefs

Cf. A063664.

Programs

  • PARI
    upto(n) = { my(res = List(0)); for(i = 1, sqrtint(n), for(j = 1, i, c = i^2 * j^2 * (i^2 + j^2); if(c <= n, listput(res, c); , next(2) ) ) ); Set(res) } \\ David A. Corneth, Nov 01 2020

Extensions

Offset 1 from Michel Marcus, Nov 01 2020