![]() |
|
|
#12 |
|
Romulan Interpreter
Jun 2011
Thailand
25B916 Posts |
|
|
|
|
|
|
#13 | |
|
Jun 2003
2×3×7×112 Posts |
Quote:
EDIT:- Nevermind. This is cumulative total. Last fiddled with by axn on 2017-03-07 at 07:32 Reason: Stupidity |
|
|
|
|
|
|
#14 |
|
Aug 2006
3×1,993 Posts |
|
|
|
|
|
|
#15 |
|
Romulan Interpreter
Jun 2011
Thailand
32×29×37 Posts |
Yes, it seems that the "supply" is not shrinking too fast. I would put my money on infinite.
As supposed initially, the "2pq+1" part is the driving here, because without it, the set dies very fast, practically {3, 5, 7, 11, 13, 23, 29, 47, 53, 59, 107} seems to be a closed set (i.e. finite). All these, either doubled and added 1, or quadrupled and added 1, are composite. But combinations of two of them, multiply with 2 and add 1, still give enough primes.... Each combination pq can give between 0 and 3 primes (i.e. 2pq+1, 2(2pq+1)+1, and 4(2pq+1)+1 can be all prime, or none prime, then the cycle repeats, a new step). So in average, the list should grow with about log(n^2) at every "pq-parse", where n is the number of the elements in the list, considering the logarithmic density of the primes. But unless proved, this is just some more gibberish. Example: consider the given set as the initial set, which is closed to 2p+1 and 4p+1 extensions. We have to check for all 11*11 combinations, if z=2pq+1 is prime, and if so, then check if 2z+1 is prime, and/or 4z+1 is prime. Then repeat. This way we add 2p+1 and 4p+1 too, and there is no other step necessary. First parse, there are 11*11=121 combinations, therefore 363 candidates. From these, 25 are prime. Then the list has 36 terms, and there are 3*36*25 candidates at the next step (the old members will not result in new primes, only combinations of all numbers with a new member can result in a new prime, the others are already in the list), i.e. 2700 candidates. From all these, 86 are prime, bringing the set at 122 members. And so on. The list grows 442, 2203, 17122 members. There is always a log factor. If I plot this numbers in excel and use a logarithmic scale of the axis, it looks like a perfect parabola. Edit: the next value is 246599 members. Last fiddled with by LaurV on 2017-03-07 at 10:22 |
|
|
|
|
|
#16 | |
|
"Forget I exist"
Jul 2009
Dumbassville
26·131 Posts |
Quote:
if one of these is 3 then you are in a subset of 6*l+1 where l is a prime ( or 1). primes other than 3 are 1 or 2 mod 3 p and q can't be both 2 mod 3 or both 1 mod 3 they have to be a mixture and the resulting value will then be 2 mod 3. so only if your primes that are 1 mod 3 keep producing primes with the 2 mod 3 values already in the set can it keep going forever along these lines. Last fiddled with by science_man_88 on 2017-03-07 at 12:31 |
|
|
|
|
|
|
#17 |
|
"Forget I exist"
Jul 2009
Dumbassville
26×131 Posts |
here's a really ugly code for it (seems to jump for 15 ms to about 26 s with an increase of 10 fold in the #d can surpass):
Code:
{my(d=[1,2,3],e=1);z
until(e==0 || #d>1000,
f=select(q->setminus([q],d)==[q] && isprime(q),apply(r->6*r+1,d));
g=fold((x,y)->vecsort(concat(x,y),,8),select(v->setminus([v],d)==[v] && setminus([v],f)==[v] && isprime(v),apply(t->apply(u->u+1,t),apply(s->2*s,apply(r->r*select(q->q%3!=r%3,d),d)))));
d=vecsort(concat(d,concat(g,f)),,8);
e=#f+#g);
d
}
Last fiddled with by science_man_88 on 2017-03-08 at 02:33 |
|
|
|
|
|
#18 |
|
Jun 2003
2×7×113 Posts |
Let f(x) be the number of prime candidates belonging to the set between 2^x and 2^(x+1).
Then f(x+1)/f(x) → 1.14 (an irrational number, from the data posted above) If this keeps on holding true then there would be infinite candidates. |
|
|
|
|
|
#19 | |
|
Aug 2006
3×1,993 Posts |
Quote:
|
|
|
|
|
|
|
#20 |
|
"Forget I exist"
Jul 2009
Dumbassville
838410 Posts |
here's the data I get based on my code ( the number in each bit level, some bit levels may not be filled completely and started at x=45 and went down but there were 6 greater than 2^45:
Code:
24 157 362 984 1528 2699 3413 5157 5947 7592 8113 9342 8955 9604 8921 8718 7576 7070 5829 5312 4240 3573 2770 2281 1707 1385 990 734 522 384 278 186 124 83 58 34 21 11 9 4 4 2 2 2 1 Last fiddled with by science_man_88 on 2017-03-08 at 12:48 |
|
|
|
|
|
#21 |
|
"Forget I exist"
Jul 2009
Dumbassville
26·131 Posts |
sorry second post for those interested here are the actual numbers themselves in 2 files so I don't break the forum size limit on the file.
|
|
|
|
|
|
#22 |
|
Aug 2006
3·1,993 Posts |
Those attachments look right to me, sm88.
|
|
|
|
![]() |
| Thread Tools | |
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Mersenne Primes p which are in a set of twin primes is finite? | carpetpool | Miscellaneous Math | 3 | 2017-08-10 13:47 |
| Distribution of Mersenne primes before and after couples of primes found | emily | Math | 34 | 2017-07-16 18:44 |
| Conjecture about Mersenne primes and non-primes v2 | Mickey1 | Miscellaneous Math | 1 | 2013-05-30 12:32 |
| A conjecture about Mersenne primes and non-primes | Unregistered | Information & Answers | 0 | 2011-01-31 15:41 |
| possible primes (real primes & poss.prime products) | troels munkner | Miscellaneous Math | 4 | 2006-06-02 08:35 |