Download PDF

Survey
yes no Was this document useful for you?
   Thank you for your participation!

* Your assessment is very important for improving the workof artificial intelligence, which forms the content of this project

Document related concepts

Big O notation wikipedia , lookup

Law of large numbers wikipedia , lookup

Vincent's theorem wikipedia , lookup

Large numbers wikipedia , lookup

List of important publications in mathematics wikipedia , lookup

Mathematical proof wikipedia , lookup

Series (mathematics) wikipedia , lookup

Elementary mathematics wikipedia , lookup

Central limit theorem wikipedia , lookup

Fermat's Last Theorem wikipedia , lookup

Wiles's proof of Fermat's Last Theorem wikipedia , lookup

Georg Cantor's first set theory article wikipedia , lookup

Nyquist–Shannon sampling theorem wikipedia , lookup

Brouwer fixed-point theorem wikipedia , lookup

Four color theorem wikipedia , lookup

Sequence wikipedia , lookup

Fundamental theorem of algebra wikipedia , lookup

Theorem wikipedia , lookup

Proofs of Fermat's little theorem wikipedia , lookup

Collatz conjecture wikipedia , lookup

Transcript
theorem on Collatz sequences starting
with Mersenne numbers∗
PrimeFan†
2013-03-21 23:53:18
Theorem. Given a Mersenne number m = 2n − 1 (with n a nonnegative
integer), the Collatz sequence starting with m reaches 3n − 1 in precisely 2n
steps. Also, the parity of such a sequence consistenly alternates parity until
3n − 1 is reached. For example, given 22 − 1 = 3 gives the Collatz sequence 3,
10, 5, 16, 8, 4, 2, 1, in which 32 − 1 = 8 is reached at the fourth step. Also, the
least significant bits of this particular sequence are 1, 0, 1, 0, 0, 0, 0, 1.
As you might already know, a Collatz sequence results from the repeated
application of the Collatz function C(n) = 3n + 1 for odd n and C(n) = n2 for
even n. If I may, I’d like to introduce the iterated Collatz function notation as
a recurrence relation thus: C0 (n) = n and Ci (n) = C(Ci−1 (n)) for all i > 0. In
our example, C0 (3) = 3, C1 (3) = 10, C2 (3) = 5, etc. (We could choose to have
C1 (n) = n instead with only slight changes to the theorem and its proof).
Proof. Obviously m = C0 (2n −1) = 2n −1 is an odd number. Therefore C1 (m) =
2n 3 − 2, an even number, and then C2 (m) = 2n−1 3 − 1, C3 (m) = 2n−1 9 − 2,
C4 (m) = 2n−2 9 − 1, C5 (m) = 2n−2 27 − 2, etc. We can now generalize that if
i−1
i+1
i
i
i is odd, then Ci (m) = 2n− 2 3 2 − 2 and Ci (m) = 2n− 2 3 2 if i is even. By
2n
2n
plugging in i = 2n, we get Ci (m) = 2n− 2 3 2 = 2n−n 3n −1 = 20 3n −1 = 3n −1,
proving the theorem.
Of course the generalized formulas do not work when i > 2n, nor does any
of this give any insight into when a Collatz sequence starting with a Mersenne
number reaches a power of 2. Likewise, the pattern of consistently alternating
parity usually breaks down on or right after the 2nth step.
∗ hTheoremOnCollatzSequencesStartingWithMersenneNumbersi
created: h2013-03-21i
by: hPrimeFani version: h39987i Privacy setting: h1i hTheoremi h11B37i
† This text is available under the Creative Commons Attribution/Share-Alike License 3.0.
You can reuse this document or portions thereof only if you do so under terms that are
compatible with the CC-BY-SA license.
1