OFFSET
1,1
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
Maxim A. Korolev, On Karatsuba's problem concerning the divisor function, Monatshefte für Mathematik, Vol. 168, No. 3 (2012), pp. 403-441; arXiv preprint, arXiv:1011.1391 [math.NT], 2010.
EXAMPLE
Fractions begin with 1/2, 3/2, 13/6, 11/3, 25/6, 37/6, 20/3, 8, 35/4, 43/4, 133/12, ...
MATHEMATICA
With[{s = DivisorSigma[0, Range[100]]}, Denominator[Accumulate[Most[s]/Rest[s]]]]
PROG
(PARI) list(nmax) = {my(s = 0, d1 = 1, d2); for(n = 2, nmax, d2 = numdiv(n); s += (d1/d2); print1(denominator(s), ", "); d1 = d2); }
CROSSREFS
KEYWORD
nonn,frac,easy
AUTHOR
Amiram Eldar, Aug 08 2025
STATUS
approved
