login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A074161
Smallest multiple of n (>n) using all composite digits (4,6,8,9 and 0).
0
4, 4, 6, 8, 40, 48, 49, 40, 90, 40, 44, 48, 468, 84, 60, 48, 68, 90, 494, 40, 84, 44, 46, 48, 400, 468, 486, 84, 406, 60, 496, 64, 66, 68, 490, 468, 444, 494, 468, 80, 984, 84, 86, 88, 90, 460, 94, 96, 98, 400, 408, 468, 689, 486, 440, 448, 684, 406, 649, 480, 488, 496
OFFSET
1,1
MATHEMATICA
smn[n_]:=Module[{t=2}, While[Count[IntegerDigits[n*t], _?PrimeQ]!=0 || MemberQ[ IntegerDigits[n*t], 1], t++]; t*n]; Array[smn, 70] (* Harvey P. Dale, Nov 10 2013 *)
CROSSREFS
Sequence in context: A100090 A222732 A363703 * A201401 A163925 A200609
KEYWORD
base,nonn
AUTHOR
Amarnath Murthy, Aug 29 2002
EXTENSIONS
Corrected and extended by Joshua Zucker, May 08 2006
STATUS
approved