The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A202296 The first a(n) positive multiples of n together include every digit. 1
10, 45, 10, 23, 18, 15, 10, 12, 10, 9, 10, 13, 8, 17, 12, 16, 7, 5, 10, 45, 9, 9, 9, 19, 36, 15, 7, 17, 7, 9, 10, 18, 10, 27, 16, 11, 10, 5, 10, 23, 9, 9, 7, 9, 8, 11, 10, 12, 10, 18, 9, 18, 8, 11, 9, 12, 10, 5, 10, 15, 9, 9, 8, 9, 11, 11, 7, 14, 5, 8, 10, 11 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The maximum value of this sequence is a(n) = 72, first attained with n = 125. This can be proved via analysis mod 10^4 (Tomas Rokicki). a(n) = 72 for an infinite number of n including n = 125*10^k.
LINKS
EXAMPLE
The first 7 multiples of 17 (17,34,51,68,85,102,119) together include every digit, so a(17) = 7.
MATHEMATICA
multInclD[n_, b_:10] := Module[{curr = 1, notFound = True}, While[notFound, If[Union[Flatten[Table[IntegerDigits[n * k, b], {k, curr}]]] == Range[0, b - 1], notFound = False, curr++]]; Return[curr]]; Table[multInclD[n], {n, 70}] (* Alonso del Arte, Dec 15 2011 *)
PROG
(Python)
def a(n):
s = set()
return next(i for i in range(1, 73) if len(s:=s|set(str(i*n)))==10)
print([a(n) for n in range(1, 73)]) # Michael S. Branicky, Apr 14 2023
CROSSREFS
Sequence in context: A200189 A240383 A160970 * A299530 A238982 A292611
KEYWORD
nonn,base
AUTHOR
David W. Wilson, Dec 15 2011
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 12 23:23 EDT 2024. Contains 372497 sequences. (Running on oeis4.)