, , .
, , , N = N1 ^ a * N2 ^ b;
N1 N2 * b .
Thus, for 7 coefficients, the number should have the form N = a ^ 6, where a is a prime number.
e.g. 2 ^ 6 (64), 3 ^ 6 (729).
EDIT: Using this logic, it would be easier to generate quicly numbers. You can easily generate perfect squares and a perfect cube <1000. And check both lists for common numbers.
source
share