OFFSET
1,2
COMMENTS
Trivially numbers in A037124 satisfy this but are not contained in this sequence.
EXAMPLE
35-3*5 = 20 is divisible by the highest power of 10 below it (10^1). So 20 is a member of this sequence.
PROG
(PARI) DP(n)={p=1; d=digits(n); for(i=1, #d, p*=d[i]); return(p)}
for(k=1, 10^7, if(n%10!=0&&(n-DP(n))%(10^(#Str(n-DP(n))-1))==0, print1(n, ", ")))
CROSSREFS
KEYWORD
nonn,base,fini,full
AUTHOR
Derek Orr, May 30 2014
STATUS
approved