#Lutece0745. Inverse Divisor Sums
Inverse Divisor Sums
Migrated from Lutece 745 Inverse Divisor Sums
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
Your friend Odd Even is obsessed with number theory. He likes to learn new operations to perform on numbers, and to spend endless hours applying his newly acquired knowledge to numbers. For instance, last year he learned about Euler's totient function , which counts the number of positive integers less than or equal to that are relatively prime to . Shortly after that, he went on a spree and calculated for all integers from up to one million by hand.Recently, he learned that the sum of all divisors of a number could be calculated by the following formula:
$sum\ of\ divisors(N)=\prod_{i=1}^{r}\frac{p_i^{(a_i+1)}-1}{p_i-1} $
Here, is the factorization of into prime factors where each is different and is the maximum power of such that that divides .
Odd Even wants to calculate the function in reverse; given a positive integer he wants to nd all positive integers having as its sum of divisors, and he wants them written out nicely in increasing order. You think this will take too long, so you have decided to intervene and offer computer assistance.
Write a computer program that does the following: given a positive integer , output a list of all the integers having as its sum of divisors, in increasing order, or inform Odd Even that no such numbers exists.
Input
The first line of the input consists of a single integer , the number of test cases. The following lines each contain a single integer .
Output
For each test case, output all such numbers on one line, in increasing order, with a single space between each number. If no numbers exist, output none!
(without quotes).
Samples
4
7
2
126
1524
4
none!
68 82
704 1083 1523
Note
The output can be large. For Java, it is advisable to buffer the output using StringBuilder.
Resources
IDI Open Programming Contest April 21st, 2012 - NTNU