login
A237525
Numbers k such that the sum of digits of k^3 is a cube.
3
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,3
COMMENTS
If k is in the sequence then so is 10*k. - David A. Corneth, May 26 2021
LINKS
FORMULA
a(n) = A053058(n)^(1/3).
EXAMPLE
36^3 = 46656. DigitSum(46656) = 27 (also a cube). So, 36 is a member of this sequence.
PROG
(PARI) isok(n) = ispower(sumdigits(n^3), 3); \\ Michel Marcus, Feb 09 2014
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Derek Orr, Feb 09 2014
STATUS
approved