Place any number of parentheses into this expression to get the number $256/63$
$$1\div2\div3\div4\div5\div6\div7\div8\div9\div10$$
I was able to get $63/256$, but I don't know how I would get the reciprocal.
Place any number of parentheses into this expression to get the number $256/63$
$$1\div2\div3\div4\div5\div6\div7\div8\div9\div10$$
I was able to get $63/256$, but I don't know how I would get the reciprocal.
Just to make sure there is no mistake in an argument, here is a Python program which does the brute force search:
Intuitively, $\text{fracs}(i,j)$ produces (yields) the results as triplets (numerator, denominator, string expression) for a problem $i\div(i+1)\div\cdots\div(j-1)\div j$, and so it is launched as $\text{fracs}(1,10)$.
Sure enough, the output has $4862$ lines ($9$th Catalan number), and many of them ($143$ of them) are showing $63/256$, e.g.:
but there are none showing $256/63$.