OFFSET
1,2
REFERENCES
Jean-Marie De Koninck and Aleksandar Ivić, Topics in Arithmetical Functions, North-Holland Publishing Company, Amsterdam, Netherlands, 1980. See pp. 12-13, Theorem 1.2.
József Sándor, Dragoslav S. Mitrinović, and Borislav Crstici, Handbook of Number Theory I, Springer Science & Business Media, 2005, Chapter II, page 59.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
Aleksandar Ivić, On the asymptotic formulae for some functions connected with powers of the zeta-function, Matematički Vesnik, Vol. 1 (14) (29) (1977), pp. 79-90.
FORMULA
EXAMPLE
Fractions begin with 1, 4/3, 5/3, 11/6, 13/6, 41/18, 47/18, 122/45, 259/90, 269/90, 299/90, 152/45, ...
MATHEMATICA
f[p_, e_] := (e+1)*(e+2)/2; d3[1] = 1; d3[n_] := Times @@ f @@@ FactorInteger[n]; Numerator[Accumulate[Table[1/d3[n], {n, 1, 100}]]]
PROG
(PARI) d3(n) = vecprod(apply(e -> (e+1)*(e+2)/2, factor(n)[, 2]));
list(nmax) = {my(s = 0); for(k = 1, nmax, s += 1 / d3(k); print1(numerator(s), ", "))};
CROSSREFS
KEYWORD
nonn,easy,frac,new
AUTHOR
Amiram Eldar, Dec 21 2024
STATUS
approved