How to determine whether a number is a product of consecutive primes? The number can be at max 10^14. Any hints is really appreciated.
# | User | Rating |
---|---|---|
1 | jiangly | 3976 |
2 | tourist | 3815 |
3 | jqdai0815 | 3682 |
4 | ksun48 | 3614 |
5 | orzdevinwang | 3526 |
6 | ecnerwala | 3514 |
7 | Benq | 3482 |
8 | hos.lyric | 3382 |
9 | gamegame | 3374 |
10 | heuristica | 3357 |
# | User | Contrib. |
---|---|---|
1 | cry | 169 |
2 | -is-this-fft- | 166 |
3 | Um_nik | 161 |
3 | atcoder_official | 161 |
5 | djm03178 | 157 |
6 | Dominater069 | 156 |
7 | adamant | 154 |
8 | luogu_official | 152 |
9 | awoo | 151 |
10 | TheScrasse | 147 |
How to determine whether a number is a product of consecutive primes? The number can be at max 10^14. Any hints is really appreciated.
Name |
---|
If the number is a product of 2 consecutive primes then how large can those primes be?
What is the maximum number of consecutive primes you can multiply so that the product is within 10^14?
Assume p and q are the required consecutive primes which satisfy p*q=n. Since p is not equal to q, p has to be less than √n and q has to be greater than √n. Also, for them to be consecutive, p has to be the largest prime number less than √n and q has to be the smallest prime number greater than √n.
Edit: The above solution checks for 2 consecutive primes. The above solution extended for k primes is explained here.
If you are only looking for 2 consecutive primes, then find the largest prime and the smallest prime and check if their product is equal to n. You might be able to make a similar idea work for any number of consecutive primes, though it seems tricky.
If it's a variable number of consecutive primes, you can try to binary search for a k-size subarray of primes that matches, for k ≥ 2. Note that k < 13 https://oeis.org/A002110. You would also have to check is n is prime.
If there is only one query, you can find all primes in [2, 107], find the smallest prime that divides N and check the product easily. Be careful when N is a prime number.