![]() |
Except by k or by p, I ' d like to share another
algorithm that sort by the number p, but not by the exponent p. Suppose we want to find all the factors of number 2^n - 1. where n could be a composite. There is a simple algorithm something like this. given a prime number p [CODE]long long llMult = 1; for (i = 0; i < 10^9; i++) { llMult = (llMult * 2) mod p; if (llMult == 1) { return i; } } return (10^9 + 1);[/CODE] If the return value n is less than 10^9, then p is a factor of 2^n - 1. If the return value is larger than 10^9, then p is not the factor for all of number 2^n - 1, where n less than 10^9. It is possible that this algorithm will faster than search by k. |
This is just the exponentiation part of both "by k" or "by p", except here it is done very lousy, about 530 million times slower, in average, than the classical modular exponentiation by squaring.
Grrr... Repeat after me: I will read the [URL="https://www.mersenne.org/various/math.php"]math page[/URL] before posting stupidities on the forum... The example there (at the "Trial Factoring" section) shows you how to do 4 modular squares instead of 23 modular shifts. If your exponent is in hundreds of millions (<30 bits) you will have to do 30 modular squarings instead of hundreds of millions of modular shifts. Wake up! You do not need to do 300 millions multiplications by two (shifts, but still need the modular calculus to p), you can solve this with a couple of squarings. And you need to do this anyhow, no matter if you search "by p" or "by k". Both the methods are doing your "algorithm" already, for each k, or respective p, candidate, except that every time they do the "algorithm" few millions time faster than in your post. |
I downloaded all the factors in the database instead of relying on the xml files to compare all factors (including TJAOI) to his factors.
Here is the file if anyone else is interested: gimpsfactors20170923.7z (339 MB) (1050 MB unpacked) [url]https://mega.nz/#!0Jon1ZzI!5Np_8aFTiNnvNBBPzrXqCbHHyBzStx5UT209SscW17w[/url] Factors of the database as of 2017-09-23 at about 5am UTC. 41,154,580 factors of 29,239,422 different exponents (21,608,172 exponents < 10[sup]9[/sup] without any known factor) [CODE] ALL TJAOI Total 41154580 5736797 Bits 5 1 6 1 8 3 9 7 10 5 11 10 12 22 13 38 14 58 15 91 16 169 17 313 18 569 19 965 20 1723 21 3087 22 5569 23 10245 24 18594 25 34430 26 62674 27 116162 28 214794 29 398847 30 742758 31 1276984 32 1059682 33 1532803 34 1403266 35 1450038 36 1415679 37 1387566 38 1352136 39 1318424 40 1285766 38 41 1255615 453 42 1226519 6565 43 1195924 18833 44 1168667 38012 45 1143068 71809 46 1119457 74795 47 1093264 77168 48 1069382 82727 49 1048083 92413 50 1027616 97976 51 1008664 120260 11.9% 52 987453 149602 15.2% 53 966265 222679 23.0% 54 951288 364134 38.3% 55 932325 412526 44.2% 56 915449 412589 45.1% 57 900026 414657 46.1% 58 884371 416043 47.0% 59 869543 416701 47.9% 60 853996 417979 48.9% 61 840435 415855 49.5% 62 828086 414941 50.1% 63 813353 413842 50.9% 64 798515 420583 52.7% 65 524408 150609 28.7% 66 353283 578 67 342956 622 68 330941 587 69 215809 615 70 162764 621 71 64444 663 72 48354 645 73 22502 633 74 16185 608 75 11765 636 76 7697 633 77 6241 621 78 5727 557 79 5113 548 80 4544 475 81 4019 449 82 3794 409 83 3337 417 84 2940 341 85 2743 315 86 2426 254 87 2252 260 88 1950 223 89 1788 235 90 1549 162 91 1504 133 92 1337 123 93 1145 99 94 1054 100 95 986 69 96 836 63 97 726 48 98 709 43 99 613 43 100 509 27 101 466 26 102 447 23 103 383 16 104 361 17 105 293 13 106 279 13 107 259 8 108 192 4 109 208 8 110 185 5 111 148 4 112 144 1 113 130 3 114 116 1 115 92 3 116 88 3 117 73 118 69 119 70 1 120 53 121 62 122 48 3 123 43 124 43 125 41 126 30 127 26 128 24 129 27 130 23 131 16 132 22 1 133 17 134 13 135 16 136 4 137 19 138 8 139 13 140 8 141 8 142 9 143 9 144 8 145 7 146 8 147 10 148 7 149 8 150 3 151 1 152 12 153 4 154 4 155 4 157 3 158 3 159 3 160 3 161 2 162 4 163 2 164 5 165 2 167 4 168 1 169 1 170 3 172 3 174 3 175 1 176 3 177 1 180 1 181 1 182 2 183 2 184 2 187 2 188 1 189 1 190 1 192 1 195 2 196 2 198 2 199 1 200 1 201 1 202 1 203 1 204 2 206 2 207 2 208 1 209 1 210 1 217 2 218 1 222 1 226 1 227 1 228 3 229 1 231 1 232 1 234 1 236 1 240 1 241 2 242 1 246 1 249 1 250 1 258 1 259 1 262 1 263 1 264 1 265 1 271 1 274 1 285 1 293 1 295 1 313 1 321 1 324 1 342 1 345 1 346 1 405 1 416 1 422 1 423 1 460 1 474 1 483 1 [/CODE] |
[QUOTE=ATH;468436]I downloaded all the factors in the database instead of relying on the xml files to compare all factors (including TJAOI) to his factors.
Here is the file if anyone else is interested: gimpsfactors20170923.7z (339 MB) (1050 MB unpacked) [url]https://mega.nz/#!0Jon1ZzI!5Np_8aFTiNnvNBBPzrXqCbHHyBzStx5UT209SscW17w[/url] Factors of the database as of 2017-09-23 at about 5am UTC. 41,154,580 factors of 29,239,422 different exponents (21,608,172 exponents < 10[sup]9[/sup] without any known factor) [CODE] ALL TJAOI Total 41154580 5736797 Bits 5 1 6 1 8 3 9 7 10 5 11 10 12 22 13 38 14 58 15 91 16 169 17 313 18 569 19 965 20 1723 21 3087 22 5569 23 10245 24 18594 25 34430 26 62674 27 116162 28 214794 29 398847 30 742758 31 1276984 32 1059682 33 1532803 34 1403266 35 1450038 36 1415679 37 1387566 38 1352136 39 1318424 40 1285766 38 41 1255615 453 42 1226519 6565 43 1195924 18833 44 1168667 38012 45 1143068 71809 46 1119457 74795 47 1093264 77168 48 1069382 82727 49 1048083 92413 50 1027616 97976 51 1008664 120260 11.9% 52 987453 149602 15.2% 53 966265 222679 23.0% 54 951288 364134 38.3% 55 932325 412526 44.2% 56 915449 412589 45.1% 57 900026 414657 46.1% 58 884371 416043 47.0% 59 869543 416701 47.9% 60 853996 417979 48.9% 61 840435 415855 49.5% 62 828086 414941 50.1% 63 813353 413842 50.9% 64 798515 420583 52.7% 65 524408 150609 28.7% 66 353283 578 67 342956 622 68 330941 587 69 215809 615 70 162764 621 71 64444 663 72 48354 645 73 22502 633 74 16185 608 75 11765 636 76 7697 633 77 6241 621 78 5727 557 79 5113 548 80 4544 475 81 4019 449 82 3794 409 83 3337 417 84 2940 341 85 2743 315 86 2426 254 87 2252 260 88 1950 223 89 1788 235 90 1549 162 91 1504 133 92 1337 123 93 1145 99 94 1054 100 95 986 69 96 836 63 97 726 48 98 709 43 99 613 43 100 509 27 101 466 26 102 447 23 103 383 16 104 361 17 105 293 13 106 279 13 107 259 8 108 192 4 109 208 8 110 185 5 111 148 4 112 144 1 113 130 3 114 116 1 115 92 3 116 88 3 117 73 118 69 119 70 1 120 53 121 62 122 48 3 123 43 124 43 125 41 126 30 127 26 128 24 129 27 130 23 131 16 132 22 1 133 17 134 13 135 16 136 4 137 19 138 8 139 13 140 8 141 8 142 9 143 9 144 8 145 7 146 8 147 10 148 7 149 8 150 3 151 1 152 12 153 4 154 4 155 4 157 3 158 3 159 3 160 3 161 2 162 4 163 2 164 5 165 2 167 4 168 1 169 1 170 3 172 3 174 3 175 1 176 3 177 1 180 1 181 1 182 2 183 2 184 2 187 2 188 1 189 1 190 1 192 1 195 2 196 2 198 2 199 1 200 1 201 1 202 1 203 1 204 2 206 2 207 2 208 1 209 1 210 1 217 2 218 1 222 1 226 1 227 1 228 3 229 1 231 1 232 1 234 1 236 1 240 1 241 2 242 1 246 1 249 1 250 1 258 1 259 1 262 1 263 1 264 1 265 1 271 1 274 1 285 1 293 1 295 1 313 1 321 1 324 1 342 1 345 1 346 1 405 1 416 1 422 1 423 1 460 1 474 1 483 1 [/CODE][/QUOTE] so basically 1 in every 7 factors known. |
[QUOTE=LaurV;468434]This is just the exponentiation part of both "by k" or "by p", except here it is done very lousy, about 530 million times slower, in average, than the classical modular exponentiation by squaring.
[/QUOTE] Thanks for your respones. Your reply promote me to analyze these 3 methods more carefully. And the result surprised me a little, I admit I am wrong. The two key points I miss is that 1. (2^n-1) mod m is only need ln(n) / ln(2) times mod operation, but not n which I thought. 2. search by "number p" need 10^9 times mod operation, but not 1 which I thought. Why I thought searching by "number p" but not by "exponent n" is that, for a prime number q = 2 * k * p + 1, if q = 2 * k1 * p1 * p2 + 1, where p1 and p2 are prime, we have to calculate (2^p1 - 1) mod q and (2^p2 - 1) mod q both. [CODE]Analyse method "exponent n", "k" and "p" ' s complexity. 1. exponent n Suppose n is larger than 1000. For a single exponent n. 2^64 / ln(2^64) / n prime numbers need to calculate, each number need calculate ln(n) / ln(2) times mod. Total mod times is: (2^64 / ln(2^64) / n) * ln(n) / ln(2) = 2^64 / 64 * ln(n) / n For all the exponent n less than 10^9, total mod times is: 2^64 / 64 * ln(1000) / 1000 + 2^64 / 64 * ln(1001) / 1001 + ... + 2^64 / 64 * ln(10^9) / 10^9 = 2^64 / 64 * 191 ln(1000) / 1000 + ... + ln(10^9) / 10^9 = S ln(x) / x dx, x from 1000 to 10^9 = S ln(x) d ln(x), x from 1000 to 10^9 = 1 / 2 * [ln(x)]^2|x from 1000 to 10^9 = 1 / 2 * {[ln(10^9)]^2 - [ln(1000)]^2} = 1 / 2 * {429.5 - 47.7} = 190.9 If only consider n larger than 10^8, then total mod times is: = 2^64 / 64 * 46 Here suppose "(2^n - 1) mod m" need ln(n) / ln(2) times mod calculation. 2. k need totally mod times is also: 2^64 / 64 * 191 3. p single number's mod times is 10^9. Total mod times is: 2^64 / ln(2^64) * 10^9 = 2^64 / 64 * 1442695041 is 7553378 times slower than method search by "exponent n". [/CODE] |
[QUOTE=wreck;468465]
2. search by "number p" need 10^9 times mod operation, but not 1 which I thought. Why I thought searching by "number p" but not by "exponent n" is that, for a prime number q = 2 * k * p + 1, if q = 2 * k1 * p1 * p2 + 1, where p1 and p2 are prime, we have to calculate (2^p1 - 1) mod q and (2^p2 - 1) mod q both. [/QUOTE] Yes, somehow like that, with the difference that when you search "by p" (like GIMPS does) you only have the prime p, and once you get a factor, you eliminate that p. Therefore, you start with about 50 million (5*10^7) and not 10^9. From which GIMPS already eliminated more than half ([URL="http://www.mersenne.ca/status/tf/0/0/1/0"]only about 21.6 millions left[/URL]). Disadvantage is that you only find first (or first few) factors for a given p. Of course, you can continue higher than that, if you want, but yet, only candidates of the form 2kp+1 will be tested (we do not talk here about putting them in classes and sieving, which also eliminates a lot of them). When you search "by k", you still have to examine all candidates, because you do not know in advance whose exponent p mersenne, some candidate q turns out to factor, unless you factor q-1, or so. Some candidates q=2x+1, after factoring x, and/or make the list of its divisors, it will turn out that they divide a 2^n+1 for a non-prime n, or for n>10^9. In fact, most of them turn out that way, dividing exactly 2^x+1, and therefore x>10^9 for factors over 2^32). You have to do a lot of additional work. Advantage is that you find all the factors for a bitlevel, for all possible k AND p, but you have to do much MUCH more work. |
For each fixed k you can create an array of all the primes p<10^9 and then sieve that array. For each sieve prime q, you find the smallest p for which 2kp+1=0 (mod q) by the extended Euclidean algorithm, lets call it p1, and then you remove all the p1, p1+q, p1+2q... up to 10^9 from the array.
Once you reach a suitable high q where further trial factoring is slower than testing candidates, you test if the remaining 2kp+1 are factors of 2^p-1. Edit: Before (or after) you sieve the array you remove all the p for which 2kp+1 is not equal to 1,7,17,23,31,41,47,49,71,73,79,89,97,103,113,119 (mod 120). |
[QUOTE=LaurV;468434]This is just the exponentiation part of both "by k" or "by p", except here it is done very lousy, about 530 million times slower, in average, than the classical modular exponentiation by squaring.
Grrr... Repeat after me: I will read the [URL="https://www.mersenne.org/various/math.php"]math page[/URL] before posting stupidities on the forum... The example there (at the "Trial Factoring" section) shows you how to do 4 modular squares instead of 23 modular shifts. If your exponent is in hundreds of millions (<30 bits) you will have to do 30 modular squarings instead of hundreds of millions of modular shifts. Wake up! You do not need to do 300 millions multiplications by two (shifts, but still need the modular calculus to p), you can solve this with a couple of squarings. And you need to do this anyhow, no matter if you search "by p" or "by k". Both the methods are doing your "algorithm" already, for each k, or respective p, candidate, except that every time they do the "algorithm" few millions time faster than in your post.[/QUOTE] You sound like RDS |
[QUOTE=petrw1;468271]How hard would it be to note how many "FIRST" factors he found?[/QUOTE]
TJAOI actually found 827 first factors that I can find (see full lists below). 612 of those from his normal factoring project, and on exponents where previous factoring had occured, but which failed to find them, which seems strange. Either the low bit level he found them on are NOT listed as having been done before even though higher levels has, examples: [url]https://mersenne.org/M33088541[/url] [url]https://mersenne.org/M371038891[/url] or the same bit level had been factored before but apparantly missed the factor? Examples: [url]https://mersenne.org/M270084769[/url] [url]https://mersenne.org/M370825747[/url] or exponents where no factoring had ever been done, even though the range 100M-1000M should have been done to low level at least back in 2008-2010 when the v5 server was new, examples: [url]https://mersenne.org/M415560947[/url] [url]https://mersenne.org/M428160451[/url] He also found 8 first factors by trial factoring at higher bit levels outside his normal project, where he was actually the first to trial factor that range, maybe on a GPU? and he has found 207 first factors by ECM. Trial factoring (612 exponents): [CODE] [URL]https://mersenne.org/M6811111[/URL] [url]https://mersenne.org/M7024807[/url] [url]https://mersenne.org/M7028183[/url] [url]https://mersenne.org/M7043441[/url] [url]https://mersenne.org/M7047839[/url] [url]https://mersenne.org/M7763923[/url] [url]https://mersenne.org/M8154967[/url] [url]https://mersenne.org/M8613757[/url] [url]https://mersenne.org/M9371851[/url] [url]https://mersenne.org/M10465573[/url] [url]https://mersenne.org/M10635311[/url] [url]https://mersenne.org/M13128419[/url] [url]https://mersenne.org/M15470531[/url] [url]https://mersenne.org/M16361909[/url] [url]https://mersenne.org/M16556363[/url] [url]https://mersenne.org/M16684181[/url] [url]https://mersenne.org/M16686841[/url] [url]https://mersenne.org/M17458547[/url] [url]https://mersenne.org/M17458939[/url] [url]https://mersenne.org/M17459069[/url] [url]https://mersenne.org/M17752381[/url] [url]https://mersenne.org/M17841221[/url] [url]https://mersenne.org/M17959243[/url] [url]https://mersenne.org/M17977189[/url] [url]https://mersenne.org/M18954283[/url] [url]https://mersenne.org/M25257509[/url] [url]https://mersenne.org/M28000339[/url] [url]https://mersenne.org/M32712703[/url] [url]https://mersenne.org/M33088541[/url] [url]https://mersenne.org/M33122153[/url] [url]https://mersenne.org/M33142423[/url] [url]https://mersenne.org/M33708737[/url] [url]https://mersenne.org/M47630519[/url] [url]https://mersenne.org/M66104189[/url] [url]https://mersenne.org/M66195611[/url] [url]https://mersenne.org/M66219407[/url] [url]https://mersenne.org/M88611311[/url] [url]https://mersenne.org/M90751757[/url] [url]https://mersenne.org/M95687831[/url] [url]https://mersenne.org/M98357197[/url] [url]https://mersenne.org/M98509891[/url] [url]https://mersenne.org/M99492737[/url] [url]https://mersenne.org/M102000401[/url] [url]https://mersenne.org/M107179573[/url] [url]https://mersenne.org/M109086547[/url] [url]https://mersenne.org/M109252799[/url] [url]https://mersenne.org/M113001529[/url] [url]https://mersenne.org/M113264699[/url] [url]https://mersenne.org/M115488017[/url] [url]https://mersenne.org/M115647463[/url] [url]https://mersenne.org/M118267993[/url] [url]https://mersenne.org/M124662107[/url] [url]https://mersenne.org/M129637633[/url] [url]https://mersenne.org/M131028587[/url] [url]https://mersenne.org/M132131101[/url] [url]https://mersenne.org/M132150919[/url] [url]https://mersenne.org/M132308147[/url] [url]https://mersenne.org/M132343297[/url] [url]https://mersenne.org/M132377899[/url] [url]https://mersenne.org/M132385271[/url] [url]https://mersenne.org/M132395539[/url] [url]https://mersenne.org/M132545783[/url] [url]https://mersenne.org/M132833819[/url] [url]https://mersenne.org/M138733691[/url] [url]https://mersenne.org/M139651271[/url] [url]https://mersenne.org/M147603019[/url] [url]https://mersenne.org/M153177001[/url] [url]https://mersenne.org/M156526709[/url] [url]https://mersenne.org/M165789791[/url] [url]https://mersenne.org/M171084343[/url] [url]https://mersenne.org/M181038499[/url] [url]https://mersenne.org/M184668401[/url] [url]https://mersenne.org/M184811321[/url] [url]https://mersenne.org/M188141959[/url] [url]https://mersenne.org/M188376091[/url] [url]https://mersenne.org/M188376691[/url] [url]https://mersenne.org/M188377817[/url] [url]https://mersenne.org/M188385983[/url] [url]https://mersenne.org/M188398271[/url] [url]https://mersenne.org/M188403289[/url] [url]https://mersenne.org/M188416717[/url] [url]https://mersenne.org/M188422349[/url] [url]https://mersenne.org/M188423111[/url] [url]https://mersenne.org/M188424043[/url] [url]https://mersenne.org/M188516227[/url] [url]https://mersenne.org/M188603507[/url] [url]https://mersenne.org/M188644829[/url] [url]https://mersenne.org/M188659091[/url] [url]https://mersenne.org/M188661097[/url] [url]https://mersenne.org/M189342383[/url] [url]https://mersenne.org/M191135237[/url] [url]https://mersenne.org/M191138693[/url] [url]https://mersenne.org/M191146519[/url] [url]https://mersenne.org/M191148143[/url] [url]https://mersenne.org/M191154797[/url] [url]https://mersenne.org/M191199653[/url] [url]https://mersenne.org/M191202373[/url] [url]https://mersenne.org/M191206313[/url] [url]https://mersenne.org/M191212421[/url] [url]https://mersenne.org/M191214061[/url] [url]https://mersenne.org/M191272363[/url] [url]https://mersenne.org/M191280917[/url] [url]https://mersenne.org/M191283707[/url] [url]https://mersenne.org/M191284139[/url] [url]https://mersenne.org/M191284193[/url] [url]https://mersenne.org/M191284631[/url] [url]https://mersenne.org/M191285009[/url] [url]https://mersenne.org/M191289121[/url] [url]https://mersenne.org/M191289379[/url] [url]https://mersenne.org/M191298493[/url] [url]https://mersenne.org/M201365377[/url] [url]https://mersenne.org/M204431377[/url] [url]https://mersenne.org/M209968169[/url] [url]https://mersenne.org/M212867069[/url] [url]https://mersenne.org/M216635219[/url] [url]https://mersenne.org/M233579849[/url] [url]https://mersenne.org/M235452367[/url] [url]https://mersenne.org/M235558781[/url] [url]https://mersenne.org/M236951137[/url] [url]https://mersenne.org/M238521893[/url] [url]https://mersenne.org/M240874213[/url] [url]https://mersenne.org/M241518769[/url] [url]https://mersenne.org/M242491463[/url] [url]https://mersenne.org/M243069601[/url] [url]https://mersenne.org/M243858817[/url] [url]https://mersenne.org/M246439639[/url] [url]https://mersenne.org/M247314493[/url] [url]https://mersenne.org/M248083733[/url] [url]https://mersenne.org/M248744597[/url] [url]https://mersenne.org/M252202289[/url] [url]https://mersenne.org/M257744387[/url] [url]https://mersenne.org/M258027433[/url] [url]https://mersenne.org/M258230057[/url] [url]https://mersenne.org/M259223183[/url] [url]https://mersenne.org/M259711303[/url] [url]https://mersenne.org/M261399217[/url] [url]https://mersenne.org/M261600821[/url] [url]https://mersenne.org/M262347751[/url] [url]https://mersenne.org/M262371673[/url] [url]https://mersenne.org/M262932017[/url] [url]https://mersenne.org/M263487907[/url] [url]https://mersenne.org/M264306487[/url] [url]https://mersenne.org/M264406711[/url] [url]https://mersenne.org/M264483083[/url] [url]https://mersenne.org/M264728713[/url] [url]https://mersenne.org/M264750253[/url] [url]https://mersenne.org/M265111681[/url] [url]https://mersenne.org/M265204549[/url] [url]https://mersenne.org/M265278163[/url] [url]https://mersenne.org/M265299017[/url] [url]https://mersenne.org/M265409411[/url] [url]https://mersenne.org/M265463221[/url] [url]https://mersenne.org/M265475671[/url] [url]https://mersenne.org/M265670557[/url] [url]https://mersenne.org/M265791527[/url] [url]https://mersenne.org/M265832731[/url] [url]https://mersenne.org/M265841143[/url] [url]https://mersenne.org/M266031251[/url] [url]https://mersenne.org/M266036299[/url] [url]https://mersenne.org/M266065001[/url] [url]https://mersenne.org/M266098873[/url] [url]https://mersenne.org/M266220709[/url] [url]https://mersenne.org/M266235289[/url] [url]https://mersenne.org/M266266877[/url] [url]https://mersenne.org/M266283067[/url] [url]https://mersenne.org/M268796191[/url] [url]https://mersenne.org/M270084769[/url] [url]https://mersenne.org/M271188067[/url] [url]https://mersenne.org/M272031449[/url] [url]https://mersenne.org/M272787133[/url] [url]https://mersenne.org/M272794003[/url] [url]https://mersenne.org/M272941007[/url] [url]https://mersenne.org/M273574193[/url] [url]https://mersenne.org/M274992953[/url] [url]https://mersenne.org/M276703601[/url] [url]https://mersenne.org/M278719901[/url] [url]https://mersenne.org/M283522271[/url] [url]https://mersenne.org/M286207219[/url] [url]https://mersenne.org/M287090333[/url] [url]https://mersenne.org/M287723869[/url] [url]https://mersenne.org/M288225391[/url] [url]https://mersenne.org/M288758033[/url] [url]https://mersenne.org/M296906219[/url] [url]https://mersenne.org/M297339787[/url] [url]https://mersenne.org/M299328439[/url] [url]https://mersenne.org/M299392693[/url] [url]https://mersenne.org/M300261167[/url] [url]https://mersenne.org/M303101047[/url] [url]https://mersenne.org/M304369349[/url] [url]https://mersenne.org/M313095199[/url] [url]https://mersenne.org/M314085617[/url] [url]https://mersenne.org/M316915889[/url] [url]https://mersenne.org/M318616433[/url] [url]https://mersenne.org/M321790877[/url] [url]https://mersenne.org/M322906249[/url] [url]https://mersenne.org/M324447163[/url] [url]https://mersenne.org/M325824481[/url] [url]https://mersenne.org/M326566909[/url] [url]https://mersenne.org/M327948419[/url] [url]https://mersenne.org/M329918063[/url] [url]https://mersenne.org/M330400537[/url] [url]https://mersenne.org/M331400483[/url] [url]https://mersenne.org/M333223811[/url] [url]https://mersenne.org/M333745177[/url] [url]https://mersenne.org/M333778373[/url] [url]https://mersenne.org/M335228171[/url] [url]https://mersenne.org/M341860067[/url] [url]https://mersenne.org/M345154253[/url] [url]https://mersenne.org/M345732643[/url] [url]https://mersenne.org/M347735981[/url] [url]https://mersenne.org/M349106119[/url] [url]https://mersenne.org/M350682499[/url] [url]https://mersenne.org/M350826461[/url] [url]https://mersenne.org/M355490129[/url] [url]https://mersenne.org/M359856499[/url] [url]https://mersenne.org/M362178347[/url] [url]https://mersenne.org/M363497933[/url] [url]https://mersenne.org/M363655373[/url] [url]https://mersenne.org/M369358361[/url] [url]https://mersenne.org/M369858761[/url] [url]https://mersenne.org/M370825747[/url] [url]https://mersenne.org/M371038891[/url] [url]https://mersenne.org/M377437447[/url] [url]https://mersenne.org/M378537829[/url] [url]https://mersenne.org/M382419637[/url] [url]https://mersenne.org/M382844153[/url] [url]https://mersenne.org/M382970851[/url] [url]https://mersenne.org/M387629743[/url] [url]https://mersenne.org/M388040603[/url] [url]https://mersenne.org/M389858333[/url] [url]https://mersenne.org/M390018463[/url] [url]https://mersenne.org/M391220611[/url] [url]https://mersenne.org/M392987779[/url] [url]https://mersenne.org/M395278649[/url] [url]https://mersenne.org/M397461607[/url] [url]https://mersenne.org/M399598349[/url] [url]https://mersenne.org/M401519927[/url] [url]https://mersenne.org/M402176449[/url] [url]https://mersenne.org/M404001449[/url] [url]https://mersenne.org/M404610257[/url] [url]https://mersenne.org/M404752757[/url] [url]https://mersenne.org/M404924413[/url] [url]https://mersenne.org/M408480547[/url] [url]https://mersenne.org/M409171027[/url] [url]https://mersenne.org/M409550381[/url] [url]https://mersenne.org/M412469627[/url] [url]https://mersenne.org/M413001497[/url] [url]https://mersenne.org/M413684021[/url] [url]https://mersenne.org/M413862859[/url] [url]https://mersenne.org/M415464113[/url] [url]https://mersenne.org/M415560947[/url] [url]https://mersenne.org/M415608481[/url] [url]https://mersenne.org/M419241941[/url] [url]https://mersenne.org/M420625693[/url] [url]https://mersenne.org/M423150461[/url] [url]https://mersenne.org/M423526861[/url] [url]https://mersenne.org/M424866367[/url] [url]https://mersenne.org/M426275299[/url] [url]https://mersenne.org/M427087159[/url] [url]https://mersenne.org/M427273709[/url] [url]https://mersenne.org/M428160451[/url] [url]https://mersenne.org/M428341763[/url] [url]https://mersenne.org/M434319239[/url] [url]https://mersenne.org/M438949337[/url] [url]https://mersenne.org/M440115133[/url] [url]https://mersenne.org/M440228713[/url] [url]https://mersenne.org/M442328771[/url] [url]https://mersenne.org/M447476401[/url] [url]https://mersenne.org/M451320017[/url] [url]https://mersenne.org/M451567003[/url] [url]https://mersenne.org/M456683473[/url] [url]https://mersenne.org/M456904421[/url] [url]https://mersenne.org/M463801109[/url] [url]https://mersenne.org/M466851653[/url] [url]https://mersenne.org/M471128059[/url] [url]https://mersenne.org/M471369599[/url] [url]https://mersenne.org/M474463009[/url] [url]https://mersenne.org/M475535141[/url] [url]https://mersenne.org/M475814809[/url] [url]https://mersenne.org/M477070037[/url] [url]https://mersenne.org/M477550169[/url] [url]https://mersenne.org/M480516173[/url] [url]https://mersenne.org/M482424673[/url] [url]https://mersenne.org/M483002071[/url] [url]https://mersenne.org/M486509377[/url] [url]https://mersenne.org/M494343407[/url] [url]https://mersenne.org/M495980827[/url] [url]https://mersenne.org/M497342737[/url] [url]https://mersenne.org/M499073287[/url] [url]https://mersenne.org/M502849973[/url] [url]https://mersenne.org/M505503371[/url] [url]https://mersenne.org/M507102601[/url] [url]https://mersenne.org/M508066373[/url] [url]https://mersenne.org/M511225397[/url] [url]https://mersenne.org/M512268683[/url] [url]https://mersenne.org/M513892787[/url] [url]https://mersenne.org/M516223859[/url] [url]https://mersenne.org/M522960943[/url] [url]https://mersenne.org/M524218003[/url] [url]https://mersenne.org/M524482019[/url] [url]https://mersenne.org/M529153661[/url] [url]https://mersenne.org/M529187227[/url] [url]https://mersenne.org/M529283413[/url] [url]https://mersenne.org/M529481773[/url] [url]https://mersenne.org/M529523899[/url] [url]https://mersenne.org/M529551739[/url] [url]https://mersenne.org/M529617173[/url] [url]https://mersenne.org/M529669991[/url] [url]https://mersenne.org/M529742561[/url] [url]https://mersenne.org/M530067059[/url] [url]https://mersenne.org/M530325833[/url] [url]https://mersenne.org/M530455283[/url] [url]https://mersenne.org/M530477527[/url] [url]https://mersenne.org/M530684549[/url] [url]https://mersenne.org/M530804941[/url] [url]https://mersenne.org/M530807411[/url] [url]https://mersenne.org/M530868347[/url] [url]https://mersenne.org/M530871521[/url] [url]https://mersenne.org/M530894723[/url] [url]https://mersenne.org/M531009443[/url] [url]https://mersenne.org/M531073867[/url] [url]https://mersenne.org/M531110977[/url] [url]https://mersenne.org/M531348133[/url] [url]https://mersenne.org/M531373729[/url] [url]https://mersenne.org/M531687227[/url] [url]https://mersenne.org/M531760871[/url] [url]https://mersenne.org/M531998983[/url] [url]https://mersenne.org/M532077841[/url] [url]https://mersenne.org/M532121519[/url] [url]https://mersenne.org/M532139263[/url] [url]https://mersenne.org/M532268537[/url] [url]https://mersenne.org/M532405849[/url] [url]https://mersenne.org/M532747739[/url] [url]https://mersenne.org/M532908403[/url] [url]https://mersenne.org/M533148851[/url] [url]https://mersenne.org/M534016727[/url] [url]https://mersenne.org/M534244129[/url] [url]https://mersenne.org/M534346381[/url] [url]https://mersenne.org/M534885259[/url] [url]https://mersenne.org/M536320033[/url] [url]https://mersenne.org/M536945359[/url] [url]https://mersenne.org/M537025399[/url] [url]https://mersenne.org/M537457871[/url] [url]https://mersenne.org/M537498217[/url] [url]https://mersenne.org/M537516541[/url] [url]https://mersenne.org/M537595697[/url] [url]https://mersenne.org/M537839851[/url] [url]https://mersenne.org/M537981383[/url] [url]https://mersenne.org/M538054171[/url] [url]https://mersenne.org/M538125389[/url] [url]https://mersenne.org/M538161539[/url] [url]https://mersenne.org/M538260721[/url] [url]https://mersenne.org/M538290971[/url] [url]https://mersenne.org/M538377817[/url] [url]https://mersenne.org/M538388533[/url] [url]https://mersenne.org/M538397983[/url] [url]https://mersenne.org/M538813631[/url] [url]https://mersenne.org/M538937423[/url] [url]https://mersenne.org/M539000047[/url] [url]https://mersenne.org/M539344837[/url] [url]https://mersenne.org/M539508419[/url] [url]https://mersenne.org/M539619373[/url] [url]https://mersenne.org/M539643857[/url] [url]https://mersenne.org/M539670583[/url] [url]https://mersenne.org/M539901049[/url] [url]https://mersenne.org/M539961119[/url] [url]https://mersenne.org/M540030587[/url] [url]https://mersenne.org/M540156979[/url] [url]https://mersenne.org/M540205279[/url] [url]https://mersenne.org/M540239587[/url] [url]https://mersenne.org/M540320797[/url] [url]https://mersenne.org/M540492947[/url] [url]https://mersenne.org/M540534649[/url] [url]https://mersenne.org/M540781537[/url] [url]https://mersenne.org/M540852491[/url] [url]https://mersenne.org/M540871003[/url] [url]https://mersenne.org/M540926203[/url] [url]https://mersenne.org/M541466297[/url] [url]https://mersenne.org/M543209071[/url] [url]https://mersenne.org/M543276907[/url] [url]https://mersenne.org/M543492773[/url] [url]https://mersenne.org/M547552667[/url] [url]https://mersenne.org/M547655023[/url] [url]https://mersenne.org/M548147021[/url] [url]https://mersenne.org/M548330617[/url] [url]https://mersenne.org/M552398569[/url] [url]https://mersenne.org/M557137307[/url] [url]https://mersenne.org/M560725973[/url] [url]https://mersenne.org/M561825293[/url] [url]https://mersenne.org/M562505611[/url] [url]https://mersenne.org/M565154141[/url] [url]https://mersenne.org/M565403621[/url] [url]https://mersenne.org/M566369017[/url] [url]https://mersenne.org/M568001153[/url] [url]https://mersenne.org/M569154457[/url] [url]https://mersenne.org/M571562951[/url] [url]https://mersenne.org/M574045369[/url] [url]https://mersenne.org/M577590311[/url] [url]https://mersenne.org/M578286563[/url] [url]https://mersenne.org/M579301693[/url] [url]https://mersenne.org/M580661659[/url] [url]https://mersenne.org/M580837519[/url] [url]https://mersenne.org/M584489707[/url] [url]https://mersenne.org/M586859353[/url] [url]https://mersenne.org/M592582589[/url] [url]https://mersenne.org/M593366209[/url] [url]https://mersenne.org/M594423679[/url] [url]https://mersenne.org/M599317883[/url] [url]https://mersenne.org/M603295153[/url] [url]https://mersenne.org/M603669383[/url] [url]https://mersenne.org/M605568151[/url] [url]https://mersenne.org/M616411183[/url] [url]https://mersenne.org/M617198287[/url] [url]https://mersenne.org/M618732259[/url] [url]https://mersenne.org/M618849137[/url] [url]https://mersenne.org/M622548529[/url] [url]https://mersenne.org/M623067659[/url] [url]https://mersenne.org/M623325497[/url] [url]https://mersenne.org/M623710957[/url] [url]https://mersenne.org/M625743683[/url] [url]https://mersenne.org/M634431491[/url] [url]https://mersenne.org/M636837569[/url] [url]https://mersenne.org/M640176941[/url] [url]https://mersenne.org/M643358173[/url] [url]https://mersenne.org/M644317879[/url] [url]https://mersenne.org/M647135891[/url] [url]https://mersenne.org/M647528111[/url] [url]https://mersenne.org/M649232917[/url] [url]https://mersenne.org/M650227129[/url] [url]https://mersenne.org/M654311477[/url] [url]https://mersenne.org/M660762161[/url] [url]https://mersenne.org/M661070327[/url] [url]https://mersenne.org/M661355323[/url] [url]https://mersenne.org/M662416397[/url] [url]https://mersenne.org/M663293387[/url] [url]https://mersenne.org/M664117211[/url] [url]https://mersenne.org/M664936847[/url] [url]https://mersenne.org/M668331623[/url] [url]https://mersenne.org/M669168571[/url] [url]https://mersenne.org/M671674951[/url] [url]https://mersenne.org/M682117801[/url] [url]https://mersenne.org/M689381573[/url] [url]https://mersenne.org/M689741839[/url] [url]https://mersenne.org/M695332819[/url] [url]https://mersenne.org/M696938533[/url] [url]https://mersenne.org/M700511761[/url] [url]https://mersenne.org/M700700009[/url] [url]https://mersenne.org/M704410933[/url] [url]https://mersenne.org/M706224203[/url] [url]https://mersenne.org/M708359671[/url] [url]https://mersenne.org/M710112839[/url] [url]https://mersenne.org/M711157879[/url] [url]https://mersenne.org/M714121277[/url] [url]https://mersenne.org/M716352467[/url] [url]https://mersenne.org/M716647297[/url] [url]https://mersenne.org/M717926719[/url] [url]https://mersenne.org/M722188039[/url] [url]https://mersenne.org/M722782157[/url] [url]https://mersenne.org/M725061329[/url] [url]https://mersenne.org/M733050467[/url] [url]https://mersenne.org/M734006137[/url] [url]https://mersenne.org/M738275149[/url] [url]https://mersenne.org/M739923739[/url] [url]https://mersenne.org/M741946957[/url] [url]https://mersenne.org/M742897583[/url] [url]https://mersenne.org/M746175541[/url] [url]https://mersenne.org/M747730469[/url] [url]https://mersenne.org/M747881083[/url] [url]https://mersenne.org/M748118741[/url] [url]https://mersenne.org/M748313857[/url] [url]https://mersenne.org/M750992279[/url] [url]https://mersenne.org/M752159647[/url] [url]https://mersenne.org/M752732219[/url] [url]https://mersenne.org/M754578529[/url] [url]https://mersenne.org/M756776413[/url] [url]https://mersenne.org/M758098007[/url] [url]https://mersenne.org/M758241097[/url] [url]https://mersenne.org/M758979883[/url] [url]https://mersenne.org/M759268621[/url] [url]https://mersenne.org/M759524279[/url] [url]https://mersenne.org/M759936811[/url] [url]https://mersenne.org/M761402597[/url] [url]https://mersenne.org/M762466739[/url] [url]https://mersenne.org/M763485427[/url] [url]https://mersenne.org/M764005213[/url] [url]https://mersenne.org/M764961493[/url] [url]https://mersenne.org/M767251937[/url] [url]https://mersenne.org/M767952631[/url] [url]https://mersenne.org/M767984281[/url] [url]https://mersenne.org/M773023793[/url] [url]https://mersenne.org/M773432089[/url] [url]https://mersenne.org/M774338557[/url] [url]https://mersenne.org/M774877121[/url] [url]https://mersenne.org/M774984037[/url] [url]https://mersenne.org/M775502261[/url] [url]https://mersenne.org/M775808233[/url] [url]https://mersenne.org/M776540231[/url] [url]https://mersenne.org/M777636971[/url] [url]https://mersenne.org/M781211243[/url] [url]https://mersenne.org/M781955347[/url] [url]https://mersenne.org/M784480457[/url] [url]https://mersenne.org/M786465419[/url] [url]https://mersenne.org/M790947301[/url] [url]https://mersenne.org/M792631663[/url] [url]https://mersenne.org/M803141509[/url] [url]https://mersenne.org/M804428809[/url] [url]https://mersenne.org/M806753677[/url] [url]https://mersenne.org/M807755071[/url] [url]https://mersenne.org/M808818379[/url] [url]https://mersenne.org/M811407239[/url] [url]https://mersenne.org/M812809937[/url] [url]https://mersenne.org/M813000103[/url] [url]https://mersenne.org/M813330223[/url] [url]https://mersenne.org/M814252427[/url] [url]https://mersenne.org/M820075889[/url] [url]https://mersenne.org/M820197583[/url] [url]https://mersenne.org/M821094667[/url] [url]https://mersenne.org/M821771833[/url] [url]https://mersenne.org/M824853313[/url] [url]https://mersenne.org/M828190291[/url] [url]https://mersenne.org/M830756963[/url] [url]https://mersenne.org/M837086279[/url] [url]https://mersenne.org/M838779509[/url] [url]https://mersenne.org/M838920359[/url] [url]https://mersenne.org/M841322723[/url] [url]https://mersenne.org/M842145929[/url] [url]https://mersenne.org/M843585377[/url] [url]https://mersenne.org/M845549611[/url] [url]https://mersenne.org/M846149219[/url] [url]https://mersenne.org/M846942643[/url] [url]https://mersenne.org/M849082691[/url] [url]https://mersenne.org/M850352507[/url] [url]https://mersenne.org/M854611139[/url] [url]https://mersenne.org/M856101901[/url] [url]https://mersenne.org/M857116471[/url] [url]https://mersenne.org/M857697541[/url] [url]https://mersenne.org/M858799187[/url] [url]https://mersenne.org/M858965801[/url] [url]https://mersenne.org/M860700329[/url] [url]https://mersenne.org/M860977333[/url] [url]https://mersenne.org/M861415363[/url] [url]https://mersenne.org/M861840079[/url] [url]https://mersenne.org/M862069937[/url] [url]https://mersenne.org/M864578293[/url] [url]https://mersenne.org/M864660197[/url] [url]https://mersenne.org/M865119377[/url] [url]https://mersenne.org/M865151479[/url] [url]https://mersenne.org/M867789943[/url] [url]https://mersenne.org/M869146739[/url] [url]https://mersenne.org/M877713329[/url] [url]https://mersenne.org/M878314699[/url] [url]https://mersenne.org/M879826861[/url] [url]https://mersenne.org/M882943427[/url] [url]https://mersenne.org/M883622309[/url] [url]https://mersenne.org/M885371657[/url] [url]https://mersenne.org/M887985589[/url] [url]https://mersenne.org/M892735111[/url] [url]https://mersenne.org/M893315543[/url] [url]https://mersenne.org/M894368273[/url] [url]https://mersenne.org/M894943817[/url] [url]https://mersenne.org/M897443147[/url] [url]https://mersenne.org/M900560351[/url] [url]https://mersenne.org/M902980087[/url] [url]https://mersenne.org/M904083407[/url] [url]https://mersenne.org/M906071891[/url] [url]https://mersenne.org/M906145843[/url] [url]https://mersenne.org/M908224501[/url] [url]https://mersenne.org/M912356857[/url] [url]https://mersenne.org/M913624079[/url] [url]https://mersenne.org/M914616511[/url] [url]https://mersenne.org/M915739621[/url] [url]https://mersenne.org/M917434033[/url] [url]https://mersenne.org/M924282869[/url] [url]https://mersenne.org/M924488843[/url] [url]https://mersenne.org/M925044559[/url] [url]https://mersenne.org/M925251517[/url] [url]https://mersenne.org/M925918793[/url] [url]https://mersenne.org/M926214629[/url] [url]https://mersenne.org/M929794609[/url] [url]https://mersenne.org/M930594649[/url] [url]https://mersenne.org/M930919037[/url] [url]https://mersenne.org/M931376821[/url] [url]https://mersenne.org/M936759839[/url] [url]https://mersenne.org/M938647001[/url] [url]https://mersenne.org/M944011273[/url] [url]https://mersenne.org/M946310231[/url] [url]https://mersenne.org/M948777979[/url] [url]https://mersenne.org/M951404147[/url] [url]https://mersenne.org/M956443429[/url] [url]https://mersenne.org/M960585911[/url] [url]https://mersenne.org/M961755293[/url] [url]https://mersenne.org/M963535717[/url] [url]https://mersenne.org/M965364979[/url] [url]https://mersenne.org/M971859341[/url] [url]https://mersenne.org/M972272659[/url] [url]https://mersenne.org/M973750237[/url] [url]https://mersenne.org/M973962911[/url] [url]https://mersenne.org/M977189299[/url] [url]https://mersenne.org/M981847247[/url] [url]https://mersenne.org/M983648077[/url] [url]https://mersenne.org/M986943829[/url] [url]https://mersenne.org/M990843277[/url] [url]https://mersenne.org/M991185421[/url] [url]https://mersenne.org/M993797821[/url] [url]https://mersenne.org/M994713887[/url] [url]https://mersenne.org/M994913209[/url] [url]https://mersenne.org/M995117147[/url] [url]https://mersenne.org/M996024301[/url] [url]https://mersenne.org/M996126983[/url] [url]https://mersenne.org/M997690357[/url] [url]https://mersenne.org/M997732003[/url] [url]https://mersenne.org/M998961239[/url][/CODE] Trial factoring, GPU? (8 exponents:) [CODE] [url]https://mersenne.org/M99043661[/URL] [url]https://mersenne.org/M101963839[/URL] [url]https://mersenne.org/M102084947[/URL] [url]https://mersenne.org/M103258193[/URL] [url]https://mersenne.org/M104410819[/URL] [url]https://mersenne.org/M107038147[/URL] [url]https://mersenne.org/M107160121[/URL] [url]https://mersenne.org/M107163127[/URL] [/CODE] |
ECM (207 exponents):
[CODE][url]https://mersenne.org/M562997[/url] [url]https://mersenne.org/M565387[/url] [url]https://mersenne.org/M568171[/url] [url]https://mersenne.org/M568643[/url] [url]https://mersenne.org/M574181[/url] [url]https://mersenne.org/M576151[/url] [url]https://mersenne.org/M582761[/url] [url]https://mersenne.org/M583577[/url] [url]https://mersenne.org/M584693[/url] [url]https://mersenne.org/M585727[/url] [url]https://mersenne.org/M592337[/url] [url]https://mersenne.org/M599843[/url] [url]https://mersenne.org/M612349[/url] [url]https://mersenne.org/M617767[/url] [url]https://mersenne.org/M622513[/url] [url]https://mersenne.org/M624917[/url] [url]https://mersenne.org/M627791[/url] [url]https://mersenne.org/M633767[/url] [url]https://mersenne.org/M635363[/url] [url]https://mersenne.org/M635939[/url] [url]https://mersenne.org/M641873[/url] [url]https://mersenne.org/M643567[/url] [url]https://mersenne.org/M645737[/url] [url]https://mersenne.org/M648289[/url] [url]https://mersenne.org/M661009[/url] [url]https://mersenne.org/M662999[/url] [url]https://mersenne.org/M668009[/url] [url]https://mersenne.org/M680341[/url] [url]https://mersenne.org/M684091[/url] [url]https://mersenne.org/M691451[/url] [url]https://mersenne.org/M692863[/url] [url]https://mersenne.org/M695407[/url] [url]https://mersenne.org/M696623[/url] [url]https://mersenne.org/M702551[/url] [url]https://mersenne.org/M705689[/url] [url]https://mersenne.org/M707219[/url] [url]https://mersenne.org/M707677[/url] [url]https://mersenne.org/M708803[/url] [url]https://mersenne.org/M713681[/url] [url]https://mersenne.org/M718723[/url] [url]https://mersenne.org/M733147[/url] [url]https://mersenne.org/M734567[/url] [url]https://mersenne.org/M739187[/url] [url]https://mersenne.org/M741101[/url] [url]https://mersenne.org/M743129[/url] [url]https://mersenne.org/M747287[/url] [url]https://mersenne.org/M749347[/url] [url]https://mersenne.org/M765619[/url] [url]https://mersenne.org/M766457[/url] [url]https://mersenne.org/M768727[/url] [url]https://mersenne.org/M771973[/url] [url]https://mersenne.org/M773831[/url] [url]https://mersenne.org/M784489[/url] [url]https://mersenne.org/M784723[/url] [url]https://mersenne.org/M791489[/url] [url]https://mersenne.org/M791851[/url] [url]https://mersenne.org/M792061[/url] [url]https://mersenne.org/M792481[/url] [url]https://mersenne.org/M796303[/url] [url]https://mersenne.org/M797383[/url] [url]https://mersenne.org/M799303[/url] [url]https://mersenne.org/M803629[/url] [url]https://mersenne.org/M805501[/url] [url]https://mersenne.org/M819263[/url] [url]https://mersenne.org/M828199[/url] [url]https://mersenne.org/M831799[/url] [url]https://mersenne.org/M840181[/url] [url]https://mersenne.org/M842141[/url] [url]https://mersenne.org/M843901[/url] [url]https://mersenne.org/M844111[/url] [url]https://mersenne.org/M844609[/url] [url]https://mersenne.org/M863867[/url] [url]https://mersenne.org/M865069[/url] [url]https://mersenne.org/M865363[/url] [url]https://mersenne.org/M870479[/url] [url]https://mersenne.org/M877783[/url] [url]https://mersenne.org/M886583[/url] [url]https://mersenne.org/M1006003[/url] [url]https://mersenne.org/M1006241[/url] [url]https://mersenne.org/M1007891[/url] [url]https://mersenne.org/M1008571[/url] [url]https://mersenne.org/M1008781[/url] [url]https://mersenne.org/M1008871[/url] [url]https://mersenne.org/M1009199[/url] [url]https://mersenne.org/M1009781[/url] [url]https://mersenne.org/M1012513[/url] [url]https://mersenne.org/M1012931[/url] [url]https://mersenne.org/M1014197[/url] [url]https://mersenne.org/M1014989[/url] [url]https://mersenne.org/M1015661[/url] [url]https://mersenne.org/M1015769[/url] [url]https://mersenne.org/M1015981[/url] [url]https://mersenne.org/M1016221[/url] [url]https://mersenne.org/M1016681[/url] [url]https://mersenne.org/M1016839[/url] [url]https://mersenne.org/M1016881[/url] [url]https://mersenne.org/M1017209[/url] [url]https://mersenne.org/M1017383[/url] [url]https://mersenne.org/M1018679[/url] [url]https://mersenne.org/M1020049[/url] [url]https://mersenne.org/M1020419[/url] [url]https://mersenne.org/M1020881[/url] [url]https://mersenne.org/M1021259[/url] [url]https://mersenne.org/M1021747[/url] [url]https://mersenne.org/M1023973[/url] [url]https://mersenne.org/M1025261[/url] [url]https://mersenne.org/M1028317[/url] [url]https://mersenne.org/M1029167[/url] [url]https://mersenne.org/M1029563[/url] [url]https://mersenne.org/M1037059[/url] [url]https://mersenne.org/M1037893[/url] [url]https://mersenne.org/M1038623[/url] [url]https://mersenne.org/M1038637[/url] [url]https://mersenne.org/M1039481[/url] [url]https://mersenne.org/M1039837[/url] [url]https://mersenne.org/M1040803[/url] [url]https://mersenne.org/M1041511[/url] [url]https://mersenne.org/M1042529[/url] [url]https://mersenne.org/M1042901[/url] [url]https://mersenne.org/M1045493[/url] [url]https://mersenne.org/M1046641[/url] [url]https://mersenne.org/M1048517[/url] [url]https://mersenne.org/M1049473[/url] [url]https://mersenne.org/M1050139[/url] [url]https://mersenne.org/M1051177[/url] [url]https://mersenne.org/M1051549[/url] [url]https://mersenne.org/M1051649[/url] [url]https://mersenne.org/M1053067[/url] [url]https://mersenne.org/M1055809[/url] [url]https://mersenne.org/M1056541[/url] [url]https://mersenne.org/M1058383[/url] [url]https://mersenne.org/M1060769[/url] [url]https://mersenne.org/M1061773[/url] [url]https://mersenne.org/M1061867[/url] [url]https://mersenne.org/M1063967[/url] [url]https://mersenne.org/M1067203[/url] [url]https://mersenne.org/M1072733[/url] [url]https://mersenne.org/M1074643[/url] [url]https://mersenne.org/M1074889[/url] [url]https://mersenne.org/M1074949[/url] [url]https://mersenne.org/M1075787[/url] [url]https://mersenne.org/M1081541[/url] [url]https://mersenne.org/M1083311[/url] [url]https://mersenne.org/M1088413[/url] [url]https://mersenne.org/M1090373[/url] [url]https://mersenne.org/M1094377[/url] [url]https://mersenne.org/M1094701[/url] [url]https://mersenne.org/M1095541[/url] [url]https://mersenne.org/M1105609[/url] [url]https://mersenne.org/M1106489[/url] [url]https://mersenne.org/M1106821[/url] [url]https://mersenne.org/M1108127[/url] [url]https://mersenne.org/M1108501[/url] [url]https://mersenne.org/M1109473[/url] [url]https://mersenne.org/M1114733[/url] [url]https://mersenne.org/M1115831[/url] [url]https://mersenne.org/M1119907[/url] [url]https://mersenne.org/M1125001[/url] [url]https://mersenne.org/M1125329[/url] [url]https://mersenne.org/M1127453[/url] [url]https://mersenne.org/M1132519[/url] [url]https://mersenne.org/M1133357[/url] [url]https://mersenne.org/M1137953[/url] [url]https://mersenne.org/M1142353[/url] [url]https://mersenne.org/M1142549[/url] [url]https://mersenne.org/M1146043[/url] [url]https://mersenne.org/M1146809[/url] [url]https://mersenne.org/M1148029[/url] [url]https://mersenne.org/M1150763[/url] [url]https://mersenne.org/M1151147[/url] [url]https://mersenne.org/M1152589[/url] [url]https://mersenne.org/M1156769[/url] [url]https://mersenne.org/M1158551[/url] [url]https://mersenne.org/M1158613[/url] [url]https://mersenne.org/M1158823[/url] [url]https://mersenne.org/M1160459[/url] [url]https://mersenne.org/M1160513[/url] [url]https://mersenne.org/M1162321[/url] [url]https://mersenne.org/M1162691[/url] [url]https://mersenne.org/M1162937[/url] [url]https://mersenne.org/M1165873[/url] [url]https://mersenne.org/M1169281[/url] [url]https://mersenne.org/M1170109[/url] [url]https://mersenne.org/M1170317[/url] [url]https://mersenne.org/M1172009[/url] [url]https://mersenne.org/M1174337[/url] [url]https://mersenne.org/M1176173[/url] [url]https://mersenne.org/M1176397[/url] [url]https://mersenne.org/M1177489[/url] [url]https://mersenne.org/M1177739[/url] [url]https://mersenne.org/M1179859[/url] [url]https://mersenne.org/M1180027[/url] [url]https://mersenne.org/M1180447[/url] [url]https://mersenne.org/M1180771[/url] [url]https://mersenne.org/M1182121[/url] [url]https://mersenne.org/M1183771[/url] [url]https://mersenne.org/M1187287[/url] [url]https://mersenne.org/M1188689[/url] [url]https://mersenne.org/M1188731[/url] [url]https://mersenne.org/M1189171[/url] [url]https://mersenne.org/M1190429[/url] [url]https://mersenne.org/M1190639[/url] [url]https://mersenne.org/M1192183[/url] [url]https://mersenne.org/M1192753[/url] [url]https://mersenne.org/M1220029[/url] [url]https://mersenne.org/M1220077[/url] [url]https://mersenne.org/M2440943[/url] [/CODE] |
[QUOTE=henryzz;468494]You sound like RDS[/QUOTE]
Unlike RDS, he stuck to math and facts. |
| All times are UTC. The time now is 10:19. |
Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2021, Jelsoft Enterprises Ltd.