![]() |
|
|
#1 |
|
Feb 2017
Belgium
3·7 Posts |
when s0 = 2, s1 = 2*s0*s0-1, s2= 2*s1*s1-1 and so on
everybody will recognize lucas-lehmer test M5=31 and divides s3 M7=127 and divides s5 lots of people are looking if Mp is prime or not? but what with the complement? s3/M5 = 607 i'm pretty sure that s3/M5, s5/M7, s11/M13, s15/M17, s17/M19, s29/M31 and s59/M61 are prime. in the last case, this means a number with more than 1.000.000.000 numbers (for those numbers i have proof) (for the moment i'am looking for a prime number with just a little over 1.000.000.000 numbers with similar methodology, creating such a number will take several months or even more time. maybe i can find proof more easily than creating the number :-) ... in my rare spare time ...) |
|
|
|
|
|
#2 | |
|
Undefined
"The unspeakable one"
Jun 2006
My evil lair
183216 Posts |
Quote:
|
|
|
|
|
|
|
#3 | |
|
"Forget I exist"
Jul 2009
Dumbassville
203008 Posts |
Quote:
|
|
|
|
|
|
|
#4 | ||
|
Jun 2003
5,051 Posts |
Quote:
Quote:
It is highly unlikely that you will find any more primes in this sequence. |
||
|
|
|
|
|
#5 | |
|
"Forget I exist"
Jul 2009
Dumbassville
203008 Posts |
Quote:
|
|
|
|
|
|
|
#6 | |
|
"Rashid Naimi"
Oct 2015
Remote to Here/There
3×5×137 Posts |
Quote:
S15 is composite? Or S15/M17 is composite? Thanks in advance. ETA Coming from axn and including S3 (which is not claimed to be prime), logically it should refer to S15/M17. I just wished members here would be a bit more descriptive for comprehension of folks like myself. Last fiddled with by a1call on 2017-02-04 at 13:45 |
|
|
|
|
|
|
#7 |
|
Jun 2003
116738 Posts |
I PRP tested s11/M13, s15/M17, and s17/M19, and all three turned out to be composite. I thought it was obvious (from the quoted portion that preceded) that all references were to s3/M5, s5/M7, etc., but I can see now how it cold be confusing. Sorry.
The "these" refer to basic things that people should be doing before making "bold statements". |
|
|
|
|
|
#8 | |
|
"Serge"
Mar 2008
Phi(4,2^7658614+1)/2
224058 Posts |
Quote:
The cofactor of sp-2/Mp doesn't seem to have any reason to be prime. Sometimes it may be, most of the time it won't. |
|
|
|
|
|
|
#9 |
|
Feb 2017
Belgium
3·7 Posts |
on the basis, I started with some sequence
f0 = 7 f1 = 7*2702-f0 ... fi=fi-1*2702-fi-2 ... the strange thing was that 7 + i*24 seemed to be prime when it was a divisor of fi it worked for the first thousands and thousands and more i and I still don't know where it goes wrong the first time fi mod (7+i24) = 0 seems to hold in most cases (primes of the form 7 + i*24) although I know sometimes you get 0 not on i-th place and apparently there are cases when you get 0 and 7 + i*24 is not a prime ... it was to good to be true ![]() (like most of the times) |
|
|
|
|
|
#10 |
|
Just call me Henry
"David"
Sep 2007
Cambridge (GMT/BST)
133708 Posts |
An alternative formulation for the Lucas-Lehmer test:
\(s_i=\sqrt2s_{i-1}+s_{i-2}; s_0=2, s_1=\sqrt2\) \(M_p=2^p-1\) is prime iff \(s_{2^{n-1}}\equiv0 (mod M_p)\) This is an example of a lucas-lehmer sequence which is a generalization of lucas sequences. The normal formula that we know doubles i. \(s_{2i}=s_i^2-2\) See http://siauliaims.su.lt/pdfai/2009/Ericksen-09.pdf for further reading. |
|
|
|
|
|
#11 | |
|
Just call me Henry
"David"
Sep 2007
Cambridge (GMT/BST)
23×3×5×72 Posts |
Quote:
\(s_i=4s_{i-2}-s_{i-4}; s_0=2, s_2=4\) Looks like I am reinventing the wheel. https://oeis.org/A003500 is already connected to https://oeis.org/A003010 Not surprising really. The standard way of referring to this Lucas sequence of the second kind is \(V_n(4,1)\) It should be possible to work out SNFS polynomials for this sequence. I am unsure whether this will just boil down to x^2-2 and x^4-4x^2+2 for n a power of 2. |
|
|
|
|