![]() |
|
|
#45 |
|
"Matthew Anderson"
Dec 2010
Oregon, USA
25·52 Posts |
Hi math people,
The densest set of 'A' prime numbers in the interval [x,x+A] with x>A can be found with a prime constellation of length 'A'. http://mathworld.wolfram.com/PrimeConstellation.html These constellations have been tabulated and used for the Polymath8 project. See the tables at http://www.opertech.com/primes/webdata/ An interval of 100 integers containing 24 primes can be found with the constellation [0 4 6 12 16 24 30 34 40 42 46 52 54 60 66 70 72 76 82 84 90 94 96 100] However, I do not know the primes. Hope this is helpful. Regards, Matt Last fiddled with by MattcAnderson on 2014-10-14 at 03:53 Reason: added about 24 primes. |
|
|
|
|
|
#46 |
|
(loop (#_fork))
Feb 2006
Cambridge, England
72·131 Posts |
Code:
[1187361391, 10980] [1395350545, 10900] [1395350595, 10844] [1395350821, 10824] [4143800871, 10598] [7538609667, 10572] [8668648953, 10542] |
|
|
|
|
|
#47 | |
|
(loop (#_fork))
Feb 2006
Cambridge, England
11001000100112 Posts |
Quote:
|
|
|
|
|
|
|
#48 |
|
(loop (#_fork))
Feb 2006
Cambridge, England
72×131 Posts |
On the principle that using lots of my own CPU time to cost myself more money is not as wise as wisdom itself, I've stopped at 11e9 (and updated the table upthread)
Code:
s=2^256 start=11*10^9 dmin=25000 q=vector(101,i,0) p=nextprime(s+start);for(t=1,101,q[t]=p-s;p=nextprime(1+p)) r=101;xx=q[101]; q while(true,\ r2=1+r;if(r2==102,r2=1);\ delta=q[r]-q[r2];\ if(delta<dmin,print([q[r], delta]);dmin=delta);\ xx=nextprime(xx+s+1)-s;\ q[r2]=xx;\ r=r2) Last fiddled with by fivemack on 2014-10-14 at 09:04 |
|
|
|
|
|
#49 |
|
Romulan Interpreter
Jun 2011
Thailand
7·1,373 Posts |
I am still working on this (only in the evenings when I get home), with a different approach. Just to keep you informed.
Maybe expect some results in a week or so... |
|
|
|
|
|
#50 |
|
(loop (#_fork))
Feb 2006
Cambridge, England
72·131 Posts |
|
|
|
|
|
|
#51 |
|
Dec 2008
you know...around...
29716 Posts |
|
|
|
|
|
|
#52 |
|
Apr 2014
100000002 Posts |
|
|
|
|
|
|
#53 |
|
"Tapio Rajala"
Feb 2010
Finland
32×5×7 Posts |
I also wrote a program last evening and let it run for the night. This was found after 4h running time on one core (I will test more to see if I got lucky or if my approach was just better)
k = 9776 Code:
s = 115792089240225030208471517581734313024179825562764966188454037028443482485321 = 2^256 + (67 digits) |
|
|
|
|
|
#54 |
|
"Ben"
Feb 2007
3·1,171 Posts |
I jumped on the bandwagon too. After an hour on one machine I have:
Code:
73603164627, 9624 |
|
|
|
|
|
#55 | |
|
"Ben"
Feb 2007
1101101110012 Posts |
Quote:
Code:
446184532951, 9514 Last fiddled with by bsquared on 2014-10-15 at 13:19 Reason: notation |
|
|
|
|
![]() |
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Sieving with powers of small primes in the Small Prime variation of the Quadratic Sieve | mickfrancis | Factoring | 2 | 2016-05-06 08:13 |
| A small puzzle | Dubslow | Puzzles | 18 | 2015-12-01 07:41 |
| Zeta nontrivial zeros list | Damian | Analysis & Analytic Number Theory | 11 | 2013-01-11 05:54 |
| New puzzle about prime | wpolly | Puzzles | 2 | 2009-07-02 20:27 |
| Prime Puzzle #190 | rogue | Puzzles | 17 | 2006-09-15 19:08 |