P448
projecteuler.net

Average Least Common Multiple

ℹ️Published on Sunday, 24th November 2013, 01:00 am; Solved by 391;
Difficulty rating: 80%

The function $\operatorname{\mathbf{lcm} }(a,b)$ denotes the least common multiple of $a$ and $b$.
Let $A(n)$ be the average of the values of $\operatorname{lcm}(n,i)$ for $1 \le i \le n$.
E.g: $A(2)=(2+2)/2=2$ and $A(10)=(10+10+30+20+10+30+70+40+90+10)/10=32$.

Let $S(n)=\sum A(k)$ for $1 \le k \le n$.
$S(100)=122726$.

Find $S(99999999019) \bmod 999999017$.



Soluzione

Last modified: May 01, 2025. Website built with Franklin.jl and the lovely Julia programming language.