Suppose we have a power tower consisting of $2$ occurring $n$ times:
$$\huge2^{2^{2^{.^{.^{.^{2}}}}}}$$
How many values can we generate by placing any number of parenthesis?
It is fairly simple for the first few values of $n$:
- There is $1$ value for $n=1$:
- $2=2$
- There is $1$ value for $n=2$:
- $4=2^{2}$
- There is $1$ value for $n=3$:
- $16=({2^{2})^{2}}=2^{(2^{2})}$
- There are $2$ values for $n=4$:
- $256=(({2^{2})^{2}})^2=(2^{(2^{2})})^2=(2^{2})^{(2^{2})}$
- $65536=2^{(({2^{2})^{2}})}=2^{(2^{(2^{2})})}$
Any idea how to formulate a general solution?
I'm thinking that it might be feasible using a recurrence relation.
Thanks
$$(a^b)^c = a^{(b\cdot c)}\ (a^b)^c\neq a^{(b^c)}$$
It's really more of a question of how many unique products can you make with n-1 two's, and then n-2 two's, etc. you're finding that as you go.
– Jun 27 '17 at 02:19If I was you, first thing I'd do is write a computer program to search for counterexamples to your claim: irreducible identities other than the given one that are irreducible. The longer it runs without an answer, the more confident I'd be of your claim. I'd imagine the check for irreducibility would require the most effort in such a program.
– Colm Bhandal Apr 06 '18 at 15:52And by the way by $\neq$ I think I mean the value, not the syntax.
– Colm Bhandal Apr 06 '18 at 15:58