OFFSET
1,2
COMMENTS
A069862 is the smallest k such that n divides the concatenation of numbers from (n+1) to (n+k), where (n+1) is on the most significant side. - Robert G. Wilson v, Nov 14 2003
LINKS
Chuck Seggelin, Concatenation of Consecutive Integers.
MATHEMATICA
f[n_] := Block[{k = n + 1}, d = k; While[ d != 0, k++; d = Mod[d*10^Floor[ Log[10, k] + 1] + k, n]]; k - n]; a = 0; Do[b = f[n]; If[b > a, a = b; Print[n, " = ", b]], {n, 1, 34500}]
CROSSREFS
KEYWORD
nonn,more,base
AUTHOR
N. J. A. Sloane, Nov 14 2003
EXTENSIONS
More terms from Robert G. Wilson v and Chuck Seggelin (chuck(AT)plastereddragon.com), Nov 14 2003
Edited by Charles R Greathouse IV, Apr 30 2010
a(29)-a(32) from Michael S. Branicky, Jul 29 2024
STATUS
approved