OFFSET
1,2
EXAMPLE
The divisors of 125 are 1, 5, 25, 125, which appear as substrings in 1953125, so 125 is a term of the sequence.
MATHEMATICA
a = {}; Do[d = Divisors[i]; l = Length[d]; r = True; s = ToString[i^3]; For[j = 1, j <= l, j++, If[StringPosition[s, ToString[d[[j]]]] == {}, r = False; Break] ]; If[r == True, a = Append[a, i]], {i, 1, 10^5}]; a
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Joseph L. Pe, Sep 25 2002
EXTENSIONS
a(15)-a(23) from Donovan Johnson, Dec 13 2010
STATUS
approved