A113562
Least multiple of n in which the n-th digit from left is 7.
Original entry on oeis.org
7, 170, 117, 10072, 100070, 1000074, 1000027, 100000072, 100000017, 10000000070, 10000000087, 1000000000176, 1000000000077, 100000000000278, 1000000000000170, 10000000000000176, 10000000000000067, 1000000000000000170
Offset: 1
a(4)= 10072, in which the fourth digit is 7.
-
lmn7[n_]:=Module[{k=Ceiling[10^(n-1)/n]},While[NumberDigit[k n,IntegerLength[ k n]-n]!=7,k++];k n]; Array[lmn7,10] (* The program generates the first 10 terms of the sequence. *) (* Harvey P. Dale, Nov 02 2022 *)
A113563
Least multiple of n in which the n-th digit from left is 8.
Original entry on oeis.org
8, 18, 108, 1008, 100080, 100008, 1000048, 10000008, 100000008, 10000000080, 10000000098, 100000000008, 1000000000038, 10000000000018, 1000000000000080, 1000000000000048, 10000000000000118, 100000000000000008, 1000000000000000018
Offset: 1
a(4)= 1008, in which the fourth digit is 8.
A113564
Least multiple of n in which the n-th digit from left is 9.
Original entry on oeis.org
9, 190, 129, 10092, 100090, 1000092, 1000069, 100000096, 100000089, 10000000090, 10000000109, 1000000000092, 1000000000129, 100000000000096, 1000000000000095, 10000000000000096, 10000000000000169
Offset: 1
a(4)= 10092, in which the fourth digit is 9.
More terms from Peter Soung (soung3(AT)hotmail.com), Jan 23 2006
Showing 1-3 of 3 results.