The Stern-Brocot-Tree looks like this:

It is an infinite binary tree that contains every positive rational number as exactly one node. The children of a node $\frac{a}{b}$ are:
- Left: Search the first left parent $\frac{x}{y}$, then: $\frac{a+x}{b+y}$
- Right: Search the first right parent $\frac{x}{y}$, then: $\frac{a+x}{b+y}$
You start with $\frac{1}{1}$ as the root node with "parents" $\frac{0}{1}$ and $\frac{1}{0}$.
Question:
Is there any node $\frac{a}{b}$ such that it has one child $\frac{x}{y}$ with $\lfloor \log(b) \rfloor > \lfloor \log(y) \rfloor$ after completely shortening the fraction?
(Is the Stern-Brocot-Tree already completely shortened?)