0%

Problem 675


Problem 675


2ω(n)

Let ω(n) denote the number of distinct prime divisors of a positive integer n.
So ω(1)=0 and ω(360)=ω(23×32×5)=3.

Let S(n) be Σd|n2ω(d).
E.g. S(6)=2ω(1)+2ω(2)+2ω(3)+2ω(6)=20+21+21+22=9.

Let F(n)=Σi=2nS(i!). F(10)=4821.

Find F(10 000 000). Give your answer modulo 1 000 000 087.


2ω(n)

ω(n)为正整数n的不同质因数的数目。
因此,ω(1)=0ω(360)=ω(23×32×5)=3

S(n)Σd|n2ω(d)
例如S(6)=2ω(1)+2ω(2)+2ω(3)+2ω(6)=20+21+21+22=9

F(n)=Σi=2nS(i!)。已知F(10)=4821

F(10 000 000)并将你的答案对1 000 000 087取余。


Gitalking ...