![]() |
|
|
#1 |
|
Mar 2018
2·5·53 Posts |
I offer 100$ for the solution of this conjecture (I mean if you find a counter-example or give a proof):
https://math.stackexchange.com/quest...921-where-m-is Last fiddled with by enzocreti on 2018-05-23 at 13:43 |
|
|
|
|
|
#2 |
|
"Forget I exist"
Jul 2009
Dumbassville
203008 Posts |
Not a counterexample or proof but since nearly all terms are 1 mod 6, 6 mod 7 is equivalent to 13 mod 42.
|
|
|
|
|
|
#3 |
|
Mar 2018
3×43 Posts |
number of decimal digits is such an arbitrary thing, the divisibility/primality questions with it are gonna be very arbitrary too, I'm afraid.
Last fiddled with by DukeBG on 2018-05-23 at 16:05 |
|
|
|
|
|
#4 |
|
Feb 2017
Nowhere
122316 Posts |
The numbers in question, when viewed as strings of decimal digits, are obtained by concatenating the decimal digits of 2^k - 1 and 2^(k-1) - 1. This gives the first few terms
10, 31, 73, 157, 3115, 6331, 12763,... Since the question concerned those of the numbers which happened to be congruent to 6 (mod 7), I computed the remainders (mod 7) out to k = one million, and found the following approximate proportions of k giving these remainders: r = 0: 1/18 r = 1: 1/18 r = 2: 1/9 r = 3: 4/9 r = 4: 1/9 r = 5: 1/9 r = 6: 1/9 Perhaps someone might like to have a go at investigating this ;-) |
|
|
|
|
|
#5 |
|
Einyen
Dec 2003
Denmark
35·13 Posts |
Counter example: k=19179 k%7=6:
Code:
10^5774*(2^19179-1)+2^(19179-1)-1 is 2-PRP! (1.6956s+0.0005s) 10^5774*(2^19179-1)+2^(19179-1)-1 is 3-PRP! (1.6811s+0.0005s) 10^5774*(2^19179-1)+2^(19179-1)-1 is 5-PRP! (1.6777s+0.0005s) 10^5774*(2^19179-1)+2^(19179-1)-1 is 7-PRP! (1.6963s+0.0005s) 10^5774*(2^19179-1)+2^(19179-1)-1 is 11-PRP! (1.6753s+0.0005s) 10^5774*(2^19179-1)+2^(19179-1)-1 is 13-PRP! (1.6836s+0.0005s) 10^5774*(2^19179-1)+2^(19179-1)-1 is 17-PRP! (1.6772s+0.0005s) Last fiddled with by ATH on 2018-05-25 at 22:33 |
|
|
|
|
|
#6 | |
|
Mar 2018
2·5·53 Posts |
Quote:
|
|
|
|
|
|
|
#7 |
|
Einyen
Dec 2003
Denmark
61278 Posts |
Up to k=24K the PRPs are:
k=2,3,4,7,8,12,19,22,36,46,51,67,79,215,359,394,451,1323,2131,3336,3371,6231,19179 with n%7=3,3,3,2,5,3,1,3,3,2,3,2,1,2,4,5,4,3,1,3,3,3,3 from k=24K to 100K I only checked n%6, no primes. |
|
|
|
|
|
#8 |
|
Feb 2017
Nowhere
4,643 Posts |
f(k) = 10^m*(2^k - 1) + 2^(k-1) -1, where m is the number of decimal digits in 2^(k-1) - 1.
We have m = 1 + floor((k-1)*log(2)/log(10)). Since 2^3 < 10 < 2^4, a given value of m will occur for either three or four consecutive values of k. Fortuitously, Mod(2,7) has multiplicative order 3, so every possible value of f(k) (mod 7) occurs for any given exponent m. Since 10 == 3 (mod 7) and Mod(3, 7) has multiplicative order 6, there are 6*3 = 18 possible combinations of Mod(10,7)^m, Mod(2,7)^k. Simply calcuating the remainders in each case gives the proportions indicated in an earlier post. The values of m for which there are 4 consecutive values of k, "shift" the pairings (Mod(m,6), Mod(k,3)) so will cause slight departures from these proportions. The pairs (Mod(m, 6) = 3, Mod(k,3) = 1) and (Mod(m,6) = 4, Mod(k,3) = 2) are the only ones giving f(k) == 6 (mod 7). By looking at k < 200, the values of k for which f(k) == 6 (mod 7) are k = 10, 11, 14, 28, 32, 49, 53, 70, 71, 74, 88, 92, 109, 113, 130, 131, 148, 152, 169, 173, 190, and 191. Most (but not all) of the corresponding values of f(k) have small factors. The first k for which the smallest factor is greater than 100 is 11 (factor 479). The first k for which the smallest factor is greater than 1000 is k = 92 (smallest factor 730315371175567). The occurrence of such a large smallest factor makes it seem unlikely that the long run of composite f(k) == 6 (mod 7) could be explained by "covering congruences." The only possible common factor between 10^m*(2^k - 1) and 2^(k-1) - 1 is 5, when k == 1 (mod 4). If k == 1 (mod 4*5^e) for a positive integer e, the factor 5 can occur e+1 times. If k =/= 1 (mod 4), one could look for small values of r for which 10^m*(2^k - 1)*r + 2^(k-1) -1 or 10^m*(2^k - 1) + r*(2^(k-1) - 1) is prime. |
|
|
|
|
|
#9 |
|
Mar 2018
2×5×53 Posts |
[QUOTE=ATH;488408]Up to k=24K the PRPs are:
k=2,3,4,7,8,12,19,22,36,46,51,67,79,215,359,394,451,1323,2131,3336,3371,6231,19179 with n%7=3,3,3,2,5,3,1,3,3,2,3,2,1,2,4,5,4,3,1,3,3,3,3 from k=24K to 100K I only checked n%6 I checked up to 400.000 no prime found but a doublecheck would be apreciated |
|
|
|
|
|
#10 |
|
Mar 2018
2×5×53 Posts |
Here the vector of exponents <=200.000 leading to a prime:
[2, 3, 4, 7, 8, 12, 19, 22, 36, 46, 51, 67, 79, 215, 359, 394, 451, 1323, 2131, 3336, 3371, 6231, 19179, 39699, 51456, 56238, 69660, 75894, 79798, 92020, 174968, 176006, 181015] Can you find other primes in the range 200.000-400.000 (i mean exponents)? Last fiddled with by enzocreti on 2018-05-28 at 08:47 |
|
|
|
|
|
#11 |
|
Mar 2018
2·5·53 Posts |
New prime found at 285019!
|
|
|
|
![]() |
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| so who got the $25,000 cut of the $100k EFF prize? | ixfd64 | Lounge | 10 | 2012-09-22 15:55 |
| Name the trolls and win a prize. | Xyzzy | Lounge | 42 | 2010-03-08 07:06 |
| EFF prize and error rate | S485122 | PrimeNet | 15 | 2009-01-16 11:27 |
| EFF Prize? | Unregistered | Information & Answers | 73 | 2007-08-11 11:38 |
| GIMPS' Prize. | T.Rex | Math | 8 | 2007-03-13 10:59 |