input a number and it will give you the prime factors (if the number is more than 100,000 then it gives you a random num)
I've been making a number system based on primes, and I needed a way to easily find how many of each prime multiply to create a number Explanation: a prime number is any number that isn't evenly divisible by any other number. A neat number theory fact is that all numbers can be made by multiplying primes together. This is because if a number isn't prime then it has to have numbers that multiply to create it and those numbers are either prime or not. If we go down the line then we are left with only prime numbers what this script does is take a number and find out how many of each prime there is in a given number.