OFFSET
1,3
LINKS
David A. Corneth, Table of n, a(n) for n = 1..10000
EXAMPLE
2744 is in the sequence because it is a cube divisible by 4.
MATHEMATICA
Join[{0}, Select[Range[200]^3, Divisible[#, IntegerLength[#]]&]] (* Harvey P. Dale, Jan 28 2015 *)
PROG
(PARI) lista(nn) = {for (i=0, nn, if (ispower(i, 3) && (i % #Str(i) == 0) , print1(i, ", ")); ); } \\ Michel Marcus, May 31 2013
CROSSREFS
KEYWORD
base,easy,nonn
AUTHOR
Luc Stevens (lms022(AT)yahoo.com), Apr 21 2006
STATUS
approved