From f51115033fb4f12e532ed2491fc54c456f3f9000 Mon Sep 17 00:00:00 2001 From: Richard Kreckel Date: Wed, 28 Dec 2005 21:34:03 +0000 Subject: [PATCH] * Updated to 43rd known Mersenne prime. --- examples/perfnum.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/perfnum.cc b/examples/perfnum.cc index 1b7c969..8ef619e 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, 6972593, 13466917, 20996011, 24036583 - int p = 25964951; + // previous ones were 1257787, 1398269, 2976221, 3021377, 6972593, 13466917, 20996011, 24036583, 25964951 + int p = 30402457; cl_I x = (((cl_I)1 << p) - 1) << (p-1); cout << x << endl; }