mdreus
Newbie

Hello, how to find the factorization of 2^n - 1? I want to find it in the format n x p x q, where n is a smaller number and the others are large and almost identical. For example the number 2^38 - 1 = 3 x 524287 × 174763. The largest number n I found was n = 122. I did it in Python but it is taking a long time to provide the values. I want larger numbers like n > 330 bits. How can I resolve this?