F.A.Q
Hand In Hand
Online Acmers
Problem Archive
Realtime Judge Status
Authors Ranklist
 
     C/C++/Java Exams     
ACM Steps
Go to Job
Contest LiveCast
ICPC@China
Best Coder beta
VIP | STD Contests
    DIY | Web-DIY beta
Author ID 
Password 
 Register new ID

Problem D. Euler Function

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 524288/524288 K (Java/Others)
Total Submission(s): 2156    Accepted Submission(s): 1722


Problem Description
In number theory, Euler's totient function $\varphi(n)$ counts the positive integers up to a given integer $n$ that are relatively prime to $n$. It can be defined more formally as the number of integers $k$ in the range $1\leq k\leq n$ for which the greatest common divisor $\gcd(n, k)$ is equal to $1$.
For example, $\varphi(9) = 6$ because $1, 2, 4, 5, 7$ and $8$ are coprime with $9$. As another example, $\varphi(1) = 1$ since for $n = 1$ the only integer in the range from $1$ to $n$ is $1$ itself, and $\gcd(1, 1) = 1$.
A composite number is a positive integer that can be formed by multiplying together two smaller positive integers. Equivalently, it is a positive integer that has at least one divisor other than $1$ and itself. So obviously $1$ and all prime numbers are not composite number.
In this problem, given integer $k$, your task is to find the $k$-th smallest positive integer $n$, that $\varphi(n)$ is a composite number.
 

Input
The first line of the input contains an integer $T(1\leq T\leq100000)$, denoting the number of test cases.
In each test case, there is only one integer $k(1\leq k\leq 10^9)$.
 

Output
For each test case, print a single line containing an integer, denoting the answer.
 

Sample Input
2 1 2
 

Sample Output
5 7
 

Source
 

Statistic | Submit | Discuss | Note
Hangzhou Dianzi University Online Judge 3.0
Copyright © 2005-2024 HDU ACM Team. All Rights Reserved.
Designer & Developer : Wang Rongtao LinLe GaoJie GanLu
Total 0.000000(s) query 1, Server time : 2024-04-25 17:34:53, Gzip enabled