OFFSET
1,2
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
Srinivasan Ramanujan, Some formulae in the analytic theory of numbers, Messenger of Math., Vol. 45 (1916), pp. 81-84.
B. M. Wilson, Proofs of some formulae enunciated by Ramanujan, Proceedings of the London Mathematical Society, Volume s2-21, Issue 1 (1923), pp. 235-255.
FORMULA
Sum_{k=1..n} a(k)/A104529(k) ~ (n/sqrt(log(n)) * (c_0 + c_1/log(n) + .... + c_k/log(n)^k + O(1/log(n)^(k+1))), where c_0 = (1/sqrt(Pi)) * Product_{p prime} sqrt(p^2-p) * log(p/(p-1)) (Ramanujan, 1916; Wilson, 1923). - Amiram Eldar, Oct 14 2022
EXAMPLE
Fractions begin with 1, 3/2, 2, 7/3, 17/6, 37/12, 43/12, 23/6, 25/6, 53/12, 59/12, 61/12, ...
a(4) = 7 because 1/tau(1) + 1/tau(2) + 1/tau(3) + 1/tau(4) = 1/1 + 1/2 + 1/2 + 1/3 = 7/3.
MAPLE
with(numtheory): a:=n->numer(sum(1/tau(k), k=1..n)): seq(a(n), n=1..57);
MATHEMATICA
Numerator[Accumulate[1/Array[DivisorSigma[0, #] &, 50]]] (* Amiram Eldar, Oct 14 2022 *)
CROSSREFS
KEYWORD
frac,nonn
AUTHOR
Emeric Deutsch, Mar 12 2005
STATUS
approved