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.

A342160 Numbers differing from the next greater cube by a cube.

Original entry on oeis.org

0, 7, 19, 26, 37, 56, 63, 98, 117, 124, 152, 189, 208, 215, 218, 279, 316, 335, 342, 387, 448, 485, 504, 511, 513, 604, 665, 702, 721, 728, 784, 875, 936, 973, 992, 999, 1115, 1206, 1267, 1304, 1323, 1330, 1385, 1512, 1603, 1664, 1701, 1720, 1727, 1854, 1981
Offset: 1

Views

Author

Lamine Ngom, Mar 26 2021

Keywords

Comments

Subsequence of A181123.

Examples

			37 = 4^3 - 3^3.
117 = 5^3 - 2^3.
		

Crossrefs

Programs

  • PARI
    isok(n)={my(t=(sqrtnint(n,3)+1)^3-n); sqrtnint(t,3)^3 == t} \\ Andrew Howroyd, Mar 26 2021