OFFSET
1,2
REFERENCES
József Sándor, Dragoslav S. Mitrinovic, and Borislav Crstici, Handbook of Number Theory I, Springer Science & Business Media, 2005, Section I.24, page 27.
Arnold Walfisz, Weylsche Exponentialsummen in der neueren Zahlentheorie, Berlin, 1963.
LINKS
G. C. Greubel, Table of n, a(n) for n = 1..1000
FORMULA
Also numerator of Sum_{i=1..n} (mu(i)/i)*floor(n/i). - Ridouane Oudra, Nov 26 2019
a(n)/A072155(n) ~ (6/Pi^2) * n + O(log(n)^(2/3)*log(log(n))^(4/3)). - Amiram Eldar, Sep 18 2022
EXAMPLE
1, 3/2, 13/6, 8/3, 52/15, 19/5, 163/35, 361/70, 1223/210, ...
MAPLE
with(numtheory); seq(numer(add(phi(k)/k, k = 1..n)), n = 1..35); # G. C. Greubel, Aug 25 2019
MATHEMATICA
Table[Sum[EulerPhi[k]/k, {k, n}], {n, 35}]//Numerator (* G. C. Greubel, Aug 25 2019 *)
PROG
(PARI) a(n) = numerator(sum(k=1, n, eulerphi(k)/k));
vector(35, n, a(n)) \\ G. C. Greubel, Aug 25 2019
(Magma) [Numerator( &+[EulerPhi(k)/k: k in [1..n]] ): n in [1..35]]; // G. C. Greubel, Aug 25 2019
(Sage) [numerator( sum(euler_phi(k)/k for k in (1..n)) ) for n in (1..35)] # G. C. Greubel, Aug 25 2019
(GAP) List([1..35], n-> NumeratorRat( Sum([1..n], k-> Phi(k)/k) ) ); # G. C. Greubel, Aug 25 2019
CROSSREFS
KEYWORD
nonn,frac
AUTHOR
N. J. A. Sloane, Jun 28 2002
STATUS
approved