Correct, the Crossover Point just happens to be in the
negative domain. And because it is an integer, it is a
loop cycle in the negative domain. A Hailstone Function
can have only one Crossover Point so no nth generation
type [1,2] can ever loop in the positive domain.
>
> A sequence starting with -5 does indeed loop. But so does
> the sequence starting with -7.
Correct. And if you look closely, you will that they
are the same loop cycle: -5 -> -14 -> -7 -> -20 -> -10 -> -5
By convention, a loop cycle is named for the smallest
magnitude element, so this is called the loop cycle at -5.
>
> The sequence starting with -17, has -25, -37, -41, -55, -61
> and -91 as CP's.
The interesting thing about a loop cycle, regardless of
which number you start with, you always return to that
number. But it is confusing to have multiple names for
the same thing, that's why the "smallest magnitude"
convention was adopted.
A cyclic permutation of a loop is the same loop.
Due to the way X, Y & Z are calculated, different cyclic
permutations result in different Hailstone Functions with
different Crossover Points. Now, if ANY of the Crossover
Points is an integer (regardless of domain), then ALL
the Crossover Points of the cyclic permutations must be
integers also.
All those Crossover Points above represent cyclic
permutations of the same Sequence Vector:
SV CP
[1, 1, 1, 2, 1, 1, 4] -17
[1, 1, 2, 1, 1, 4, 1] -25
[1, 2, 1, 1, 4, 1, 1] -37
[2, 1, 1, 4, 1, 1, 1] -55
[1, 1, 4, 1, 1, 1, 2] -41
[1, 4, 1, 1, 1, 2, 1] -61
[4, 1, 1, 1, 2, 1, 1] -91
[1, 1, 1, 2, 1, 1, 4] -17
[1, 1, 2, 1, 1, 4, 1] -25
[1, 2, 1, 1, 4, 1, 1] -37
[2, 1, 1, 4, 1, 1, 1] -55
[1, 1, 4, 1, 1, 1, 2] -41
[1, 4, 1, 1, 1, 2, 1] -61
[4, 1, 1, 1, 2, 1, 1] -91
[1, 1, 1, 2, 1, 1, 4] -17
And in a loop cycle, the set of Crossover Points is
the set of odd numbers in the Collatz Sequence.
>
> In Appendix B, you calculate "a 6th generation Type [1,2] Mersenne
> Hailstone".
>
> Calculating backwards from "a", I get the
> following value for "d" ;
>
> a = 2 ^ 177149 - 1
> b = 2 * (2^177149) - 2
> c = 4 * (2^177149) - 4
> d = (4/3) * (2^177149) - 1.
> If d is an integer, then (2^177149) mod 3 = 0.
>
> But 2^n mod 3 <> 0 for all integers
> Therefore, "d" cannot be an integer.
There's something wrong there. Let's try it again
using x for the exponent of 2.
a = (2**x - 1)
b = 2*(2**x - 1)
c = 4*(2**x - 1)
d = 4*(2**x - 1) - 1
----------------
3
= 2**(x+2) - 4 - 1
----------------
3
= 2**(x+2) - 5
------------
3
Note: x was an odd number, so x+2 will be an odd number
and any power of 2 to an odd power is 2(mod 3), so in
(mod 3), we have
d = 2(mod 3) - 2(mod 3)
-------------------
0(mod 3)
= 0(mod 3)
--------
0(mod 3)
Therefore, d is an integer.
And x cannot be an even number since 2**x-1 is always
0(mod 3) when x is even and therefore cannot be the
Hailstone of any Sequence Vector since a number 0(mod 3)
cannot have an odd ancestor (Seed).
>
> Bill J
>
>
>
>
>
> > > Bill J