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.

A115762 Numbers k such that the digits of k^3, reversed, include the digits of k as substring.

Original entry on oeis.org

1, 4, 5, 6, 9, 39, 67, 99, 670, 735, 999, 2424, 5619, 6700, 6966, 9999, 14597, 15458, 29266, 33795, 43259, 49664, 61256, 69566, 75463, 80238, 97155, 99999, 123798, 190544, 290105, 292660, 424068, 424846, 429163, 432590, 625503, 658458
Offset: 1

Views

Author

Giovanni Resta, Jan 30 2006

Keywords

Examples

			735^3 = 39706(537)5.
		

Crossrefs

Programs

  • Mathematica
    Select[Range[660000],SequenceCount[IntegerDigits[IntegerReverse[#^3]],IntegerDigits[#]]>0&] (* Harvey P. Dale, May 13 2025 *)