mersenneforum.org  

Go Back   mersenneforum.org > Prime Search Projects > And now for something completely different

Reply
 
Thread Tools
Old 2016-07-06, 06:25   #34
Batalov
 
Batalov's Avatar
 
"Serge"
Mar 2008
Phi(4,2^7658614+1)/2

250516 Posts
Default

And one for n=16, with s0=17073:
Code:
(((((((((((((((17073^2-2)^2-2)^2-2)^2-2)^2-2)^2-2)^2-2)^2-2)^2-2)^2-2)^2-2)^2-2)^2-2)^2-2)^2-2)^2-2
or, slightly shorter written, =
((((((((((((((291487327^2-2)^2-2)^2-2)^2-2)^2-2)^2-2)^2-2)^2-2)^2-2)^2-2)^2-2)^2-2)^2-2)^2-2)^2-2
(277369 digit, PRP)
Batalov is offline   Reply With Quote
Old 2016-07-06, 07:02   #35
paulunderwood
 
paulunderwood's Avatar
 
Sep 2002
Database er0rr

373910 Posts
Default

Congrats. Have you done a Lucas PRP test on these (3) Fermat PRPs?
paulunderwood is offline   Reply With Quote
Old 2016-07-06, 07:17   #36
Batalov
 
Batalov's Avatar
 
"Serge"
Mar 2008
Phi(4,2^7658614+1)/2

250516 Posts
Default

Sure did.
Batalov is offline   Reply With Quote
Old 2016-07-22, 19:01   #37
science_man_88
 
science_man_88's Avatar
 
"Forget I exist"
Jul 2009
Dumbassville

100000110000002 Posts
Default

Quote:
Originally Posted by Xyzzy View Post
It took us a while but we think we have this right:

30201 2 ^ 2 - 2 ^ 2 - 2 ^ 2 - 2 ^ 2 - 2 ^ 2 - 2 ^ 2 - 2 ^ 2 - 2 ^ 2 - 2 ^ 2 - 2 ^ 2 - 2 ^ 2 - 2 ^ 2 - 2 ^ 2 - 2 ^ 2 -

We really dislike parentheses!

sorry for awakening this thread again ( there's a new similar thread)
well they are mathematically meaningful as they allow proper values without parentheses yours is equivalent to 30201 -4-4-4-4-4-4-4-4-4-4-4-4-4-4 if it was completely done properly in theory though I think you misplaced the operators by having a space in between things as well.
science_man_88 is offline   Reply With Quote
Old 2016-07-22, 20:31   #38
henryzz
Just call me Henry
 
henryzz's Avatar
 
"David"
Sep 2007
Cambridge (GMT/BST)

23·3·5·72 Posts
Default

My testing on n=17 has now passed x=1000. Tests now take around an hour.
henryzz is online now   Reply With Quote
Old 2016-07-22, 23:23   #39
Batalov
 
Batalov's Avatar
 
"Serge"
Mar 2008
Phi(4,2^7658614+1)/2

36·13 Posts
Default

Would you like to compare residues ?
(I didn't plan to run n=17 but then left some running on a laptop, so I have some residues up to 3000, I think...)
Batalov is offline   Reply With Quote
Old 2016-07-23, 13:23   #40
henryzz
Just call me Henry
 
henryzz's Avatar
 
"David"
Sep 2007
Cambridge (GMT/BST)

23·3·5·72 Posts
Default

Quote:
Originally Posted by Batalov View Post
Would you like to compare residues ?
(I didn't plan to run n=17 but then left some running on a laptop, so I have some residues up to 3000, I think...)
I am fairly confident in the pc I am running these on. Testing should speed up shortly as I will be using a sieved file produced on my slower Linux machine(that spends a lot of time in windows). Previously I have just left it running using pfgw factoring.
I would gladly compare them though if you have them available.
henryzz is online now   Reply With Quote
Old 2016-09-15, 16:14   #41
henryzz
Just call me Henry
 
henryzz's Avatar
 
"David"
Sep 2007
Cambridge (GMT/BST)

23×3×5×72 Posts
Default

I tested to n=17 to 4k. Stopping for now.
henryzz is online now   Reply With Quote
Old 2017-05-29, 05:07   #42
Batalov
 
Batalov's Avatar
 
"Serge"
Mar 2008
Phi(4,2^7658614+1)/2

250516 Posts
Cool a subset of Lucas Primes

Here is something that might come as a surprise.

1. What if you take L=3, and then repeat Lucas transformation L=L^2-2... do you know what you will get? You will get normal Lucas numbers L(2^n).

2. Can these be prime? Yes! Have a look at OEIS oeis.org/A001606; primes and powers of two are eligible!

3. What does this code do?
Code:
$ gp
for(n=10,66,m=2*2^n;forstep(f=m-1,2^(n+20),[m+2,m-2],if(!isprime(f),next);L=Mod(3,f);for(k=2,n,L=L^2-2);if(!L,print(f" | L(2^"n")"))))
65241089 | L(2^12)
524287 | L(2^18)
16074670081 | L(2^19)
1811939329 | L(2^22)
167772161 | L(2^23)
1176482497601470463 | L(2^24)
3758096383 | L(2^28)
15868293545983 | L(2^28)
2147483647 | L(2^30)
206158430209 | L(2^31)
5703716569087 | L(2^35)
17575814316278415361 | L(2^39)
7595426324676607 | L(2^41)
79543069199826943 | L(2^42)
609885905787813887 | L(2^45)
3204381503618285567 | L(2^45)
55164591835661205503 | L(2^51)
9400813862173173350401 | L(2^53)
166453042227613532161 | L(2^54)
264028247927004812279807 | L(2^63)
4. While we can't practically approach L(2^29) character, we can play with L(2^24), L(2^25), L(2^26), L(2^27). All lesser are known to be composite, except L(2^1), L(2^2), L(2^3), L(2^4). Just like Fermat primes! :-)

P.S. 1176482497601470463 | L(2^24) using LLPsieve, so L(2^24) is off the list.

Last fiddled with by Batalov on 2017-05-31 at 03:03 Reason: L(2^24) is composite
Batalov is offline   Reply With Quote
Old 2019-06-03, 14:09   #43
sweety439
 
"99(4^34019)99 palind"
Nov 2016
(P^81993)SZ base 36

55318 Posts
Default

The index of the first prime in some Lucas sequences or Lehmer sequences are listed in these sequences: A269254, A269252 and A305534.

Last fiddled with by sweety439 on 2019-06-03 at 14:09
sweety439 is offline   Reply With Quote
Reply

Thread Tools


Similar Threads
Thread Thread Starter Forum Replies Last Post
Lucas-Lehmer test Mathsgirl Information & Answers 23 2014-12-10 16:25
lucas-lehmer theorem Robot2357 Math 6 2013-06-15 03:10
lucas lehmer outstretch science_man_88 Miscellaneous Math 7 2010-07-14 12:35
Lucas-Lehmer Test storm5510 Math 22 2009-09-24 22:32
Lucas-Lehmer Dougal Information & Answers 9 2009-02-06 10:25

All times are UTC. The time now is 17:22.


Fri Jul 16 17:22:26 UTC 2021 up 49 days, 15:09, 1 user, load averages: 1.43, 1.60, 1.63

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

This forum has received and complied with 0 (zero) government requests for information.

Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation.
A copy of the license is included in the FAQ.