308581: CF1542C. Strange Function
Memory Limit:256 MB
Time Limit:1 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Strange Function
题意翻译
记 $f(i)$ 为最小的正整数数 $x$ 满足 $x$ 不是 $i$ 的因子。 现给出正整数 $n$,请计算出 $\sum_{i=1}^n f(i)$ 模 $10^9+7$ 的值。上述式子等价于 $f(1)+f(2)+\cdots+f(n)$。 本题含多组数据。令数据组数为 $t$,那么有 $1 \leq t \leq 10^4$,$1 \leq n \leq 10^{16}$题目描述
Let $ f(i) $ denote the minimum positive integer $ x $ such that $ x $ is not a divisor of $ i $ . Compute $ \sum_{i=1}^n f(i) $ modulo $ 10^9+7 $ . In other words, compute $ f(1)+f(2)+\dots+f(n) $ modulo $ 10^9+7 $ .输入输出格式
输入格式
The first line contains a single integer $ t $ ( $ 1\leq t\leq 10^4 $ ), the number of test cases. Then $ t $ cases follow. The only line of each test case contains a single integer $ n $ ( $ 1\leq n\leq 10^{16} $ ).
输出格式
For each test case, output a single integer $ ans $ , where $ ans=\sum_{i=1}^n f(i) $ modulo $ 10^9+7 $ .
输入输出样例
输入样例 #1
6
1
2
3
4
10
10000000000000000
输出样例 #1
2
5
7
10
26
366580019