Created
February 24, 2026 20:42
-
-
Save Hermann-SW/2d8dbe86f105bd0b5bfdacf51ed98f3e to your computer and use it in GitHub Desktop.
@neptune's largest known 96,522 decimal digits 3-Carmichael number, with single random base verification
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| \\ @Neptune's largest known 3-Carmichael number (96522 decimal digits): | |
| \\ https://www.mersenneforum.org/node/22080/page3#post1066763 | |
| p = 3*(5752211*43#/2-1)^1069/2+1; | |
| q = 3*(5752211*43#/2-1)^1069+1; | |
| r = 3*((5752211*43#/2-1)^1069+(5752211*43#/2-1)^2138)/1050650772710+1; | |
| n = p*q*r; | |
| print(#digits(n)); | |
| n1 = (n-1)/gcd(n-1,p-1); | |
| n2 = n1/gcd(n1,q-1); | |
| n3 = n2/gcd(n2,r-1); | |
| print(#digits(n3)); | |
| expr="lift(Mod(2+random(),n)^(n-1))"; | |
| gettime(); | |
| print(eval(expr)); | |
| print("took "gettime()"ms to compute "expr); |
Author
Hermann-SW
commented
Feb 24, 2026
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment