#Lutece1038. Euler function
Euler function
Migrated from Lutece 1038 Euler function
All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.
Description
Given and , please calculate the following expression.
$\displaystyle{\sum_{k=m}^{n} \lfloor\frac{n}{k}\rfloor euler[k]}$
where is the maximum integer that is less than or equal to .
- is defined as the number of in , satisfying .
- is the greatest common divisor of and .
If you know nothing about euler function, you can visit the following link to learn some useful information.
http://en.wikipedia.org/wiki/Euler's_totient_function
Input
The first line of input contains a number , indicating the number of test cases.
For each case, the first line contains two integers and .
Output
For each case, output the answer in one line.
Samples
2
2 2
2 3
1
3
Note
Because the answer is so large, please use long long instead of int. Correspondingly, please use %lld
instead of %d
to scanf and printf.
Resources
The 13th UESTC Programming Contest Preliminary