Looks interesting, but I can't get past the Mathematica expressions. Can you explain things more in English? Or standard mathematical notation? Or any lower-level programming language?
I gather than an "orbit" is the entire trajectory from n0 to (probably) 1. First, can you define a "sub-orbit"? I assume it's not a cycle.
I get where 3n+1 comes from, and 2n-1 (going "upstream"), but where does 2n+1 come from? I can see where (3n+1)/2 would appear, but why does (3/2)^n (1 + y) -1 appear? Is that somehow a recursion of (3n+1)/2? I don't see how that would work given that extra evens must be identified.
If you factor odd x+1 and look at the power of two, it defines the sub orbit. If it is 2^1, it is a descender and if it is 2^(something greater than 1), it is an ascender. Therefore, a descending sub orbit has one multiply. An ascending sub orbit has IntegerExponent[x+1,2] multiplies. The count of multiplications is the same as the count of directed edges in the graph data.
(3/2)^n (1 + y) -1 is the key to this entire process!
I was curious about the structure of sequences of ascending numbers, so I
nested ((3x+1)/2) eight deep to get (3^8-2^8+3^8 x)/2^7. Then I substituted y for the exponents and simplified to get 2((3/2)^y (1 + x) -1)
(I dropped the leading 2 because it gets cancelled during calculations). When I set x to a number I knew started a sub orbit of 8, and set y to 8, I got an even number which when the powers of 2 were removed, equals the last number of the sub orbit,
as expected. So that provided the omegaSubOrbit[x] function. As I said above, the (x+1) from that simplification is the critical observation.
Code:
IntegerExponent[x+1,2] is a [I]Mathematica[/I] function that counts the trailing zeroes
in base two, which give us the exponent of two we use to reduce to an odd number
2n+1 is creating odd numbers. For the functions with limits, (i.e., 1000000) means 1000000 odd numbers.
The key is to remember we use only odd numbers for x.