A172495 a(n) = numerator of fraction whose decimal representation is (n).(1)(2)(3)...(n-1)(n).
11, 53, 3123, 20617, 102469, 95679, 71234567, 406172839, 9123456789, 101234567891, 111234567891011, 1515432098637639, 1312345678910111213, 70617283945505560657, 3024691357820222426283, 403086419727527803285379, 171234567891011121314151617
Offset: 1
Examples
a(6) = 95679; 95679/15625 = 6.123456.
Links
- Harvey P. Dale, Table of n, a(n) for n = 1..368
Programs
-
Mathematica
Numerator[#]GCD[Numerator[#],Denominator[#]]&/@Table[FromDigits[Join[{n},Flatten[ IntegerDigits/@Range[n]]]]/10^n,{n,20}] (* Harvey P. Dale, Dec 16 2019 *)
Extensions
a(11)-a(17) from Jon E. Schoenfield, Dec 19 2017
Comments