|
|
|
|
|
by cnvogel
3082 days ago
|
|
Quote from the Article: """The figure is calculated by multiplying 2 by itself 77,232,917 times and then subtracting 1.""" Would HN agree that multiplying 2 by itself once is 2⨯2 = pow(2,2), twice is 2⨯2⨯2 = pow(2,3) and N times yields pow(2,N+1)? The Mersenne Prime found is pow(2,77232917) − 1, hence the article got the number wrong? |
|