OFFSET
1,2
COMMENTS
Includes all numbers whose rightmost nonzero digit is a 1.
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
EXAMPLE
12 times 5 = 60, which doesn't contain the digit 5; so 12 is not in this sequence.
MAPLE
filter:= n -> andmap(d -> has(convert(d*n, base, 10), d), [$1..9]):
select(filter, [$1..1000]); # Robert Israel, Feb 27 2018
MATHEMATICA
Select[Range[421], Function[n, NoneTrue[Range@ 9, FreeQ[IntegerDigits[n #], #] &]]] (* Michael De Vlieger, Jan 28 2018 *)
PROG
(PARI) isok(n) = {for (d=1, 9, if (! vecsearch(Set(digits(d*n)), d), return (0)); ); return(1); } \\ Michel Marcus, Jan 27 2018
CROSSREFS
KEYWORD
nonn,base
AUTHOR
J. Lowell, Jan 27 2018
EXTENSIONS
More terms from Michel Marcus, Jan 27 2018
STATUS
approved