From 81b7cab5ed547ef74c2fa10771e140cfab702057 Mon Sep 17 00:00:00 2001 From: Richard Kreckel Date: Thu, 6 Dec 2001 13:10:06 +0000 Subject: [PATCH] * Update to newly found 39th mersenne prime. --- examples/perfnum.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/perfnum.cc b/examples/perfnum.cc index d317075..45f3f3a 100644 --- a/examples/perfnum.cc +++ b/examples/perfnum.cc @@ -8,8 +8,8 @@ using namespace cln; int main () { - // previous ones were 1257787, 1398269, 2976221, 3021377 - int p = 6972593; + // previous ones were 1257787, 1398269, 2976221, 3021377, 6972593 + int p = 13466917; cl_I x = (((cl_I)1 << p) - 1) << (p-1); cout << x << endl; }