OFFSET
1,2
EXAMPLE
2592 is in the sequence because the digital sum of 2592 is 18, and 2592^2/18 = 373248 = 72^3.
PROG
(PARI)
s=[]; for(n=1, 100000, d=sumdigits(n); if(n^2%d==0 && ispower(n^2\d, 3), s=concat(s, n))); s
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Colin Barker, Jan 30 2014
STATUS
approved