Here’s the latest progress on the hyperbinary sequence. We’re trying to figure out the inverse relation of the function : given a particular number
, where does it occur in the hyperbinary sequence? That is, what are the values of
for which
?
There are infinitely many, but in a previous post I argued why we only need to find occurrences at even positions of the sequence, which we call primary occurrences. I have no idea how easy or hard it is to give a general method for finding all primary occurrences. But some progress has been made:
- Brendan proved by induction that
and
. These correspond to the numbers that occur right next to 1 in the sequence (we saw earlier that
).
- Brendan also proved that
. This is impressive, since this pattern certainly isn’t obvious (at least, it wasn’t to me!).
- Fergal Daly conjectured that the number of primary occurrences of
is
.
denotes the so-called Euler totient function;
is defined to be the number of positive integers smaller than
which are relatively prime to
. An explanation of this fact, if it is true (and it really looks like it might be!) would probably go a long way towards finding a general method for computing
!
Can anyone find a proof of Fergal’s conjecture?
I don’t have a solution but I have some interesting stuff and since I have no time and no sign of a solution I thought I’d share what I have and see if anyone else can make progress.
I can get a bunch of things like
h(2^n + 0) = 1n + 1
h(2^n + 2) = 2n – 1
h(2^n + 4) = 3n – 4
h(2^n + 6) = 3n – 5
h(2^n + 8) = 4n – 9
h(2^n + 10) = 5n – 12
h(2^n + 12) = 5n – 13
h(2^n + 14) = 4n – 11
h(2^n + 16) = 5n – 16
h(2^n + 18) = 7n – 23
h(2^n + 20) = 8n – 27
h(2^n + 22) = 7n – 24
…
h(2^n + m) = h(m)n – C
The details are a bit too much for a comment (including some python code). So I’ve posted them over here.
This sequence is another form of the Calkin-Wilf tree. Making a list of the ratios of adjacent numbers in the sequence in order is equivalent to listing off the fractions on the tree in order.
Keeping that in mind, we can say that the two figures next to a number occurring primarily also appeared next to each other earlier in the sequence. Those two numbers can be a and b, with the number occurring primarily being n.
So, a+b=n. If n=6 for example, a and b could be 1 and 5 or 5 and 1, but not 2 and 4, 4 and 2, or 3 and 3. Why? Because a/b has to occur on the Calkin-Wilf tree, since a and b are next to each other at some point. Brent has already shown that numbers on the tree are in lowest terms, so a and b must be relatively prime. A is relatively prime to b only when it is relatively prime to n, so the number of primary occurrences n has is limited by the number of relatively prime numbers there are less than n. Also, because every rational number appears on the Calkin-Wilf tree, every relatively prime number lower than n will appear as a at some point.
Whew! I hope that wasn’t too complicated. Am I right?
JM: yes! I came to the same realization last night and actually laughed out loud. =) The funny thing is that this is an elegant proof of the fact that the number of primary occurrences of n is phi(n), which nonetheless doesn’t shed any light on how to compute the inverse relation of h (…or does it?). Sort of sneaky.
Pingback: The hyperbinary sequence and the Calkin-Wilf tree | The Math Less Traveled