OFFSET
1,2
LINKS
David A. Corneth, Table of n, a(n) for n = 1..10000
EXAMPLE
15 is a term since 15/5 = 3.
16 is not a term because 16/6 = 2.66666666...
MATHEMATICA
Select[Range[200], Divisible[#, Sort[IntegerDigits[#]][[-1]]] &] (* Alonso del Arte, Sep 09 2017 *)
PROG
(PARI) isok(n) = (n % vecmax(digits(n))) == 0; \\ Michel Marcus, Sep 11 2017
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Reinhard Zumkeller, May 16 2002
STATUS
approved