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.

A035128 Rotating digits of a(n)^3 right once still yields a cube.

Original entry on oeis.org

1, 2, 5, 379
Offset: 1

Views

Author

Patrick De Geest, Nov 15 1998

Keywords

Comments

Cubes resulting in leading zeros excluded.

Examples

			379^3 = 54439939 -> 95443993 = 457^3.
		

Crossrefs

Programs

  • Magma
    [k:k in [1..100000]| IsPower(Seqint((Intseq(Floor(k^3/10)) cat [Intseq(k^3)[1]])),3)]; // Marius A. Burtea, Oct 08 2019
  • Mathematica
    Select[Range[500], IntegerQ @ Surd[FromDigits @ RotateRight @ IntegerDigits[#^3], 3] &] (* Amiram Eldar, Oct 08 2019 *)