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.

A383640 Internal digits of k^3 include digits of k as substring, k does not end in 0.

Original entry on oeis.org

56, 782, 5111, 8089, 8216, 9553, 11768, 14357, 18229, 53257, 64164, 65137, 72556, 98442, 213405, 271516, 830686, 941976, 1969394, 2420681, 2751442, 4150015, 5354867, 7045156, 9590417, 9699457, 10333214, 13427757, 21955652, 31213974, 32743132, 35272742
Offset: 1

Views

Author

Shyam Sunder Gupta, May 03 2025

Keywords

Examples

			56 is in the sequence as 56^3 = 175616 contains 56 in its decimal expansion.
		

Crossrefs

Programs

  • Mathematica
    Select[Range[5,10^6],Mod[#,10]>0&&SequenceCount[Rest[Drop[IntegerDigits[#^3],-1]],IntegerDigits[#]]>0&] (* James C. McMahon, May 09 2025 *)