mersenneforum.org

mersenneforum.org (https://www.mersenneforum.org/index.php)
-   Miscellaneous Math (https://www.mersenneforum.org/forumdisplay.php?f=56)
-   -   Challenge (https://www.mersenneforum.org/showthread.php?t=12289)

science_man_88 2009-08-18 18:51

all I wanted to do is find a pattern that could back up my previous one about the 4 x th prime then I can give you a range to check and find a new one. also last I checked the source i read said the next one is likely in the 63 million exponent range and will have 19 million digits.


by a pattern to back up the other one I mean a pattern in the 4 xth prime to go to or the amount x increases for the next one to check around.

Mini-Geek 2009-08-18 18:55

[quote=flouran;186337]In the event that he does give us a big number (beyond testing limits with ECPP or LL), we could use a probabilistic primality test. If the number is declared composite, then it is 100% true. If the number is declared prime, then it is most likely prime. In the event that he gives us a pseudoprime, it can be no larger than 2^64, which is well within testing limits.

This is described in further detail here:
[URL]http://mersenneforum.org/showpost.php?p=185894&postcount=5[/URL]

Of course, we would most likely have to code an M-R test, which is not hard to do; especially since a probabilistic primality test like OPQBT or RQFT (which has a worst case error estimate of much less than 1/4) is yet to be optimized and coded in full.[/quote]
For one that would need ECPP, sure, we could PRP it first.
Maybe I'm missing something, but if it could be done with the LL wouldn't that be about as fast as a PRP test?

Dougal 2009-08-18 19:03

63 million is a total guess really.noone can say where the next prime will be.you said about 6 hours hours ago that you could find 48000 mersenne primes a year with 9 computers.ok,so you have one computer,thats 48000/9=5333.so on your own in a year you could find this many mersenne primes.5333/365=14.6 so you could find this many in one day.6 hours is a quarter of a day so 14.6/4=3.65 you should have found at least 3 mersenne primes by now,where are they?

science_man_88 2009-08-18 19:10

[COLOR="Yellow"]3 5 7 [/COLOR][COLOR="Red"]11[/COLOR] [COLOR="yellow"]13 17 19[/COLOR] [COLOR="red"]23[/COLOR] 29 [COLOR="yellow"]31[/COLOR] 37 [COLOR="red"]41[/COLOR] 43 47 53 [COLOR="red"]59[/COLOR] [COLOR="yellow"]61[/COLOR] 67 71
[COLOR="red"]73[/COLOR] 79 83 [COLOR="yellow"]89[/COLOR] [COLOR="red"]97[/COLOR] 101 103 [COLOR="yellow"]107[/COLOR] [COLOR="red"]109[/COLOR] 113 [COLOR="yellow"]127[/COLOR] 131 [COLOR="red"]137[/COLOR] 139 149 151 [COLOR="red"]157[/COLOR] 163 167 173
[COLOR="red"]179[/COLOR] 181 191 193 [COLOR="red"]197[/COLOR] 199 211 223 [COLOR="red"]227[/COLOR] 229 233 239 [COLOR="red"]241[/COLOR] 251 257 263 [COLOR="red"]269[/COLOR] 271 277 281
[COLOR="red"]283[/COLOR] 293 307 311 [COLOR="red"]313[/COLOR] 317 331 337 [COLOR="red"]347[/COLOR] 349 353 359 [COLOR="red"]367[/COLOR] 373 379 383 [COLOR="red"]389[/COLOR] 397 401 409
[COLOR="red"]419 [/COLOR]421 431 433 [COLOR="red"]439[/COLOR] 443 449 457 [COLOR="red"]461[/COLOR] 463 467 479 [COLOR="red"]487[/COLOR] 491 499 503 [COLOR="red"]509[/COLOR] [COLOR="yellow"]521[/COLOR] 523 541
[COLOR="red"]547[/COLOR] 557 563 569 [COLOR="red"]571[/COLOR] 577 587 593 [COLOR="red"]599[/COLOR] 601 [COLOR="yellow"]607[/COLOR] 613 [COLOR="red"]617[/COLOR] 619 631 641 [COLOR="red"]643[/COLOR] 647 653 659
[COLOR="red"]661[/COLOR] 673 677 683 [COLOR="red"]691[/COLOR] 701 709 719 [COLOR="red"]727[/COLOR] 733 739 743 [COLOR="red"]751[/COLOR] 757 761 769 [COLOR="red"]773[/COLOR] 787 797 809
[COLOR="red"]811[/COLOR] 821 823 827 [COLOR="red"]829[/COLOR] 839 853 857 [COLOR="red"]859[/COLOR] 863 877 881 [COLOR="red"]883[/COLOR] 887 907 911 [COLOR="red"]919[/COLOR] 929 937 941
[COLOR="red"]947[/COLOR] 953 967 971 [COLOR="red"]977[/COLOR] 983 991 997 [COLOR="red"]1009[/COLOR] 1013 1019 1021 [COLOR="red"]1031[/COLOR] 1033 1039 1049 [COLOR="red"]1051[/COLOR] 1061 1063 1069
[COLOR="red"]1087[/COLOR] 1091 1093 1097 [COLOR="red"]1103[/COLOR] 1109 1117 1123 [COLOR="red"]1129[/COLOR] 1151 1153 1163 [COLOR="red"]1171[/COLOR] 1181 1187 1193 [COLOR="red"]1201[/COLOR] 1213 1217 1223
[COLOR="red"]1229[/COLOR]


[COLOR="Red"]RED[/COLOR] = 4 xth odd prime
[COLOR="Yellow"]YELLOW[/COLOR] = mersenne exponent

Dougal 2009-08-18 19:12

and can you explain what this is telling us?

science_man_88 2009-08-18 19:16

if I could find a pattern in the number of 4 x th odd primes between each know exponent maybe I could say this is the closest 4 xth odd prime to this exponent so go this many 4 xth odd primes and check the 4 primes on each side and or itself .

Dougal 2009-08-18 19:19

what is 4 x th stuff about, are you saying for example take x=3,so 4*3=12,the nearest prime is either 11 or 13 so an exponent near 11 or 13 will yield a prime?

flouran 2009-08-18 19:22

[QUOTE=Mini-Geek;186339]For one that would need ECPP, sure, we could PRP it first.
Maybe I'm missing something, but if it could be done with the LL wouldn't that be about as fast as a PRP test?[/QUOTE]

Yep. But PRP is better for testing composites (which most likely will be science man's "prime"); hence, their nickname, the "compositeness test". I wouldn't object to LL, though.

Although M-R and LL run in the same asymptotic time, I suggested M-R because it is way way way easier to code in PARI/GP than it is to code LL (apparently, my stupidity was at an all-time-high because I had been incognizant of Ernst's code :lol:).

science_man_88 2009-08-18 19:22

No I'm saying the fourth odd prime is 11 so in this case if you look both side you can find at least one prime exponent that works and because it's more than one 4 x th odd prime before the next in the hundreds I'd need a pattern of how many between the next possibility

10metreh 2009-08-18 19:30

[QUOTE=science_man_88;186356]No I'm saying the fourth odd prime is 11 so in this case if you look both side you can find at least one prime exponent that works and because it's more than one 4 x th odd prime before the next in the hundreds I'd need a pattern of how many between the next possibility[/QUOTE]

This is not the sort of place you'll find patterns. Somewhere you might is [url=en.wikipedia.org/wiki/Mandelbrot_set]en.wikipedia.org/wiki/Mandelbrot_set[/url].

science_man_88 2009-08-18 19:31

also it might tell us which ones have a digit number divisible by 3 if you look though 31 doesn't work for this case ( no surprise for me there) both of the other ones shown that are halfway between the 4 x th odd primes according to wikipedia have digit numbers divisible by 3.


All times are UTC. The time now is 05:53.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2021, Jelsoft Enterprises Ltd.