OFFSET
1,1
COMMENTS
a(n) = n*A086064(n).
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
MATHEMATICA
smn[n_]:=Module[{k=2}, While[SequenceCount[IntegerDigits[k*n], IntegerDigits[ n]]<1, k++]; k*n]; Array[smn, 60] (* Harvey P. Dale, Oct 02 2021 *)
PROG
(Python)
def a(n):
s = str(n)
return next(mn for mn in range(2*n, 11*n, n) if s in str(mn))
print([a(n) for n in range(1, 55)]) # Michael S. Branicky, Feb 23 2025
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Reinhard Zumkeller, Aug 26 2003
STATUS
approved
