Let me give you an example of a number that meets the criteria that I was looking for:
1234567818 = 2 * 31 * 1991239 -- only 3 unique primes which are the factors of the number. (Of course 62 is a factor as well, but I didn't count it as I was breaking things down to search for the base primes for my solution, which, as I mentioned above, is quite a bit different that the problem that was apparently supposed to be solved.)
There's also numbers like 1234567812, which is 2 * 2 * 30864203, but it may not count as a solution as it doesn't have three distinct factors (2 is there twice, so it's not 3 unique numbers).
Needless to say, what I was working up takes just a wee bit longer to process and generate than a list for 4th roots, but it certainly makes more sense in the concept of storing and sorting the values of the factors. With n ^ 4, as long as you run a loop from 1 to n, it's already sorted for you...