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.

A218562 Numbers k such that k^2 + 1 is divisible by a cube.

Original entry on oeis.org

57, 68, 182, 193, 239, 307, 318, 432, 443, 557, 568, 682, 693, 807, 818, 932, 943, 1057, 1068, 1182, 1193, 1307, 1318, 1432, 1443, 1557, 1568, 1682, 1693, 1807, 1818, 1932, 1943, 1958, 1985, 2057, 2068, 2182, 2193, 2307, 2318, 2432, 2436, 2443, 2557, 2568
Offset: 1

Views

Author

Michel Lagneau, Nov 02 2012

Keywords

Examples

			239 is in the sequence because 239^2 + 1 =  2 * 13 ^ 4.
1985 is in the sequence because 1985^2 + 1 = 2 * 17 ^ 3 * 401.
		

Crossrefs

Cf. A000578 (cubes).

Programs

  • Mathematica
    Select[Range[2,2600],Max[Transpose[FactorInteger[#^2+1]][[2]]]>2&]