OFFSET
1,2
COMMENTS
Sequence is infinite since it contains all the numbers of the form (10^(2*t+1)-1)/9, i.e., repunits with an odd number of digits, like 111, 11111, and so on (A100706).
LINKS
Giovanni Resta, Table of n, a(n) for n = 1..600
EXAMPLE
41499585 is a term because 401040909050805 is a multiple of 41499585.
MATHEMATICA
ins[n_, c_] := Block[{d = IntegerDigits[n]}, FromDigits@ Most@ Flatten@ Transpose[{d, c + 0 Range[Length@d]}]]; Select[Range[10^5], Mod[#, 10] > 0 && Mod[ins[#, 0], #] == 0 &]
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Giovanni Resta, May 23 2017
STATUS
approved