Forum: Programming
2021-03-08, 18:01
|
Replies: 10
Views: 232
|
Forum: Programming
2021-03-08, 17:51
|
Replies: 10
Views: 232
|
Forum: Programming
2021-03-08, 16:41
|
Replies: 10
Views: 232
|
Forum: Programming
2021-03-08, 16:12
|
Replies: 10
Views: 232
|
Forum: Riesel Prime Search
2021-03-02, 18:52
|
Replies: 239
Views: 38,751
DRUG is PRP top
We had a nice email from Jeff Gilchrist this morning saying one of his computers had reported:
2^13380298-27 is base 3-Fermat PRP! (4027872 decimal digits) Time : 9677.550 sec.
2^13380298-27 is...
|
Forum: Miscellaneous Math
2021-03-01, 20:48
|
Replies: 2
Views: 126
|
Forum: Software
2021-02-28, 15:28
|
Replies: 8
Views: 453
|
Forum: Hardware
2021-02-28, 08:23
|
Replies: 166
Views: 16,821
|
Forum: Hardware
2021-02-26, 13:13
|
Replies: 166
Views: 16,821
|
Forum: Information & Answers
2021-02-24, 22:52
|
Replies: 20
Views: 514
|
Forum: Information & Answers
2021-02-24, 22:18
|
Replies: 20
Views: 514
|
Forum: Information & Answers
2021-02-24, 21:10
|
Replies: 20
Views: 514
|
Forum: Information & Answers
2021-02-24, 20:49
|
Replies: 20
Views: 514
Since for prime n we have a^n== a mod n then...
Since for prime n we have a^n== a mod n then a^(n-1) == 1. We can take a square root a^((n-1)/2) and expect the result to be +- 1. If it is 1 and we can take another square root by dividing the...
|
Forum: Information & Answers
2021-02-24, 20:36
|
Replies: 20
Views: 514
Surely you did the binomial theorem. (a+b)^n =...
Surely you did the binomial theorem. (a+b)^n = a^n + binom(n,1)*a^(n-1)*b + binom(n,2)*a^(n-2)*b^2 + ... + b^n. Now think about a particular binom(n,k). It is n!/(k!*(n-k)!). If n was prime then...
|
Forum: Data
2021-02-24, 09:46
|
Replies: 549
Views: 75,369
Thanks, Jean.
I merely got the candidate...
Thanks, Jean.
I merely got the candidate from www.mersenne.ca. I might have run a 3-PRP to be sure-ish. Anyway, Primo does a quick Fermat+Lucas à la BPSW before embarking on a lengthy ECPP path.
|
Forum: Miscellaneous Math
2021-02-24, 09:13
|
Replies: 72
Views: 2,385
Are you seriously thinking of spreading this...
Are you seriously thinking of spreading this calculation over a supercomputer running Mathematica? At the current wavefront you would need to calculate a polynomial with ~2^109000000 terms, let alone...
|
Forum: Data
2021-02-24, 06:42
|
Replies: 549
Views: 75,369
|
Forum: And now for something completely different
2021-02-24, 06:38
|
Replies: 47
Views: 14,778
M82939 cofactor is certified...
M82939 cofactor is certified (https://primes.utm.edu/primes/page.php?id=132049)
FactorDB entry (http://www.factordb.com/index.php?id=1100000000213099295)
|
Forum: Software
2021-02-23, 01:37
|
Replies: 12
Views: 3,720
|
Forum: Miscellaneous Math
2021-02-22, 21:03
|
Replies: 10
Views: 360
|
Forum: Software
2021-02-22, 17:06
|
Replies: 8
Views: 319
|
Forum: Miscellaneous Math
2021-02-22, 01:52
|
Replies: 10
Views: 360
|
Forum: Miscellaneous Math
2021-02-21, 18:57
|
Replies: 18
Views: 1,094
Big question
Are the solutions to b^2 = 2^i*3^j + 1 finite? (i, j >= 0)
I have only found b in [2, 3, 5 ,7, 17].
|
Forum: Miscellaneous Math
2021-02-21, 16:17
|
Replies: 18
Views: 1,094
Latest test:
...
Latest test:
{EulerPRP(a,n)=Mod(a,n)^((n-1)/2)==kronecker(a,n);}
{
tst(n,a)=
gcd(a+3,n)==1&&
gcd(3*a+1,n)==1&&
gcd(a^2+6*a+1,n)==1&&
kronecker(a,n)==-1&&
|
Forum: Miscellaneous Math
2021-02-21, 05:21
|
Replies: 18
Views: 1,094
All Euler-PRP = -1
I am now testing:
{tst(n,a)=kronecker(a,n)==-1&&kronecker(a-1,n)==-1&&kronecker(a+1,n)==-1&&
Mod(a,n)^((n-1)/2)==-1&&Mod(a-1,n)^((n-1)/2)==-1&&Mod(a+1,n)^((n-1)/2)==-1&&...
|