OFFSET
1,1
EXAMPLE
2^51 = 2251799813685248, which contains the divisors of 51, i.e. 1, 3, 17, 51, as substrings, so 51 belongs to the sequence.
MATHEMATICA
a = {}; Do[d = Divisors[i]; l = Length[d]; r = True; s = ToString[2^i]; 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^3}]; a
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Joseph L. Pe, Sep 25 2002
STATUS
approved