OFFSET
1,2
LINKS
Colin Barker, Table of n, a(n) for n = 1..1000
EXAMPLE
152 is in the sequence because the digital sum of 152 is 8, and 152^3/8 = 438976 = 76^3.
PROG
(PARI)
s=[]; for(n=1, 3000, d=sumdigits(n); if(n^3%d==0 && ispower(n^3\d, 3), s=concat(s, n))); s
CROSSREFS
KEYWORD
nonn,easy,base
AUTHOR
Colin Barker, Jan 30 2014
STATUS
approved