![]() |
![]() |
#1 |
"刀-比-日"
May 2018
317 Posts |
![]()
Out of the total of 5,953 base-10 palindromic prime exponents < 109, currently there are 1,889 remaining base-10 palindromic prime exponents for which the corresponding Mersenne numbers have no known factor (see the attached file). The list does not include the exponents for M2, M3, M5, and M7 which are the only four known Mersenne primes with base-10 palindromic prime exponents.
|
![]() |
![]() |
![]() |
#2 |
"刀-比-日"
May 2018
1001111012 Posts |
![]()
The initial post contains a list of base-10 palindromic prime exponents for which currently the corresponding Mersenne numbers have no known factor and are also of untested or unverified LL/PRP status.
In addition, this second post contains a shorter list of 292 exponents for which currently the corresponding Mersenne numbers have no known factor but are of verified C-LL/C-PRP status (see the attached file). |
![]() |
![]() |
![]() |
#3 |
"刀-比-日"
May 2018
317 Posts |
![]()
The following Wolfram language code generates the remaining palindromic prime exponents < 109 for which the corresponding Mersenne numbers remain to be factored/verified.
Currently, there are 1880 such palindromic exponents within the range [100707001,..., 999676999]. Note that the code could be optimized for speed. Code:
pp = PrimePi[10^9]; pn = 1; count = 0; ic = 1; While[ic <= pp, pn = NextPrime[pn]; If[(PalindromeQ[pn] == True) && (pn > 7), pns = ToString[pn]; wppns = StringJoin["https://www.mersenne.org/report_exponent/?exp_lo=", pns, "&exp_hi=&text=1"]; text = Import[wppns]; fc = StringContainsQ[text, "Factored"]; vc = StringContainsQ[text, "Verified"]; If[(fc == False) && (vc == False), Print[pn]; count++;]; ]; ic++;]; Print[count]; |
![]() |
![]() |
![]() |
Thread Tools | |
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Are there infinitely many palindromic numbers of this form | enzocreti | enzocreti | 1 | 2020-03-04 19:02 |
palindromic prime 111010111 | enzocreti | enzocreti | 5 | 2018-12-10 23:15 |
Binary Palindromic Primes | CannOfPrimes | No Prime Left Behind | 6 | 2013-09-19 01:49 |
Happy Palindromic day! | ET_ | Lounge | 4 | 2012-02-21 18:20 |
Palindromic Primes | S80780 | Math | 5 | 2003-04-13 23:49 |