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.

A237525 Numbers k such that the sum of digits of k^3 is a cube.

Original entry on oeis.org

0, 1, 2, 5, 8, 10, 11, 20, 27, 33, 36, 39, 42, 50, 54, 57, 69, 72, 75, 78, 80, 84, 87, 93, 100, 101, 105, 108, 110, 111, 114, 135, 138, 147, 162, 165, 168, 174, 177, 200, 219, 222, 225, 228, 231, 234, 258, 267, 270, 273, 276, 285, 291, 294, 312
Offset: 1

Views

Author

Derek Orr, Feb 09 2014

Keywords

Comments

If k is in the sequence then so is 10*k. - David A. Corneth, May 26 2021

Examples

			36^3 = 46656. DigitSum(46656) = 27 (also a cube). So, 36 is a member of this sequence.
		

Crossrefs

Programs

  • PARI
    isok(n) = ispower(sumdigits(n^3), 3); \\ Michel Marcus, Feb 09 2014

Formula

a(n) = A053058(n)^(1/3).