in reply to Re: Finding all divisors of an integer
in thread Finding all divisors of an integer

That's not at all the question that is being asked, and has nothing to do with primes. OP is asking for factorization all factors of a number.

  • Comment on Re^2: Finding all divisors of an integer

Replies are listed 'Best First'.
Re^3: Finding all divisors of an integer
by gri6507 (Deacon) on Jul 05, 2004 at 16:40 UTC
    This algorithm finds all factors of a number!
Re^3: Finding all divisors of an integer
by Anonymous Monk on Jul 21, 2010 at 23:06 UTC
    If you multiply all the possible combinations of the prime factors together (and get rid of repeats), you get a list of all the factors, and the number itself. I wonder how you multiply all the possible combinations of a list...