Let's define unordered binary tree as a tree where each internal node has two children and the relative order of the subtrees of a node is not important. Then show:
$$b_n = {1\over 2}\sum_{i=1}^{n-1}\binom{n}{i}b_ib_{n-i}$$
When we construct cobinatorial argument, my intuition says summation(represented in $\sum$) corresponds to the disjoint union of countings and multiplication is a combinational countings between two independent situation(represented in $b_{i}b_{n-i}$).
If I slightly change the given recurrence relation as :
$$2b_n = \sum_{i=1}^{n-1}\binom{n}{i}b_ib_{n-i}$$
I could think of my self this counting cares about the order of the spanning of the first node so counts twice for each case of order.
However, still what is unclear is that what $\sum_{i=1}^{n-1}$ refer to. It represents certain disjoint dissection on given combinatorial situation,but I still fall in labyrinth.
Any hint to proceed?