I think brute force approach should work: try all es from 2 (1 is a trivial solution) and up, taking r = n ^ 1/e, a double. If r is less than 2, stop. Otherwise, compute ceil(r)^e and floor(r)^e, and compare them to n (you need ceil and floor to compensate for errors in floating point representations). Assuming your integers fit in 64 bits, you would not need to try more than 64 values of e.
Here is an example in C++:
#include <iostream>
#include <string>
#include <sstream>
#include <math.h>
typedef long long i64;
using namespace std;
int main(int argc, const char* argv[]) {
if (argc == 0) return 0;
stringstream ss(argv[1]);
i64 n;
ss >> n;
cout << n << ", " << 1 << endl;
for (int e = 2 ; ; e++) {
double r = pow(n, 1.0 / e);
if (r < 1.9) break;
i64 c = ceil(r);
i64 f = floor(r);
i64 p1 = 1, p2 = 1;
for (int i = 0 ; i != e ; i++, p1 *= c, p2 *= f);
if (p1 == n) {
cout << c << ", " << e << endl;
} else if (p2 == n) {
cout << f << ", " << e << endl;
}
}
return 0;
}
When invoked with 65536, it produces this output:
65536, 1
256, 2
16, 4
4, 8
2, 16
ehave to be an integer ? – huitseeker Dec 26 '11 at 10:59n/2and create an array of int of size n/2 + 1 name it A set to zero in start up, then for each of the prime numbers (p) testn/p == 0or not, until n/p == 0, set n /= p and increment A[p], then you will have prime factorization, If you want faster method for this ask it in new question. – Saeed Amiri Dec 26 '11 at 11:37n/2, just go tosqrt(n). Any factor that is left over is automatically the last prime. – btilly Dec 26 '11 at 16:15