OFFSET
1,2
COMMENTS
Every number that has a digit '1' (cf. A011531) is in this sequence. Sequence A034838 (every digit divides n) is not a subsequence (e.g., 324 is not in the present sequence). - M. F. Hasler, Jan 10 2016
LINKS
Chai Wah Wu, Table of n, a(n) for n = 1..10000
PROG
(Python)
A263314_list = []
for i in range(10**4):
s = str(i)
for d in s:
j = int(d)
if j :
for e in s:
if int(e) % j:
break
else:
A263314_list.append(i)
break
# Chai Wah Wu, Oct 21 2015
(PARI) is(n)={n && (n=select(t->t, Set(digits(n))))%n[1]==0} \\ The divisor is necessarily the smallest nonzero digit. A vector having no nonzero component is considered equal to 0. - M. F. Hasler, Jan 10 2016
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Giovanni Teofilatto, Oct 14 2015
STATUS
approved