login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A035128
Rotating digits of a(n)^3 right once still yields a cube.
3
OFFSET
1,2
COMMENTS
Cubes resulting in leading zeros excluded.
LINKS
Eric Weisstein's World of Mathematics, Cubic Number
EXAMPLE
379^3 = 54439939 -> 95443993 = 457^3.
MATHEMATICA
Select[Range[500], IntegerQ @ Surd[FromDigits @ RotateRight @ IntegerDigits[#^3], 3] &] (* Amiram Eldar, Oct 08 2019 *)
PROG
(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
CROSSREFS
KEYWORD
nonn,base,hard
AUTHOR
Patrick De Geest, Nov 15 1998
STATUS
approved