19 Jul
2007
19 Jul
'07
6:22 p.m.
Well, here's a program that will generate them for you given the prime factors. Given n factors, for i=0 to 2^n - 1 d = 1 for j=0 to n-1 if bit j of i is set (*) d = d * jth factor end print d end (*) in C, this is if (i & (1<<j)) -- Mike Stay metaweta@gmail.com http://math.ucr.edu/~mike