Let $ab=n=2^{15}-1$. We know that $n$ is odd, so either $a$, $b$ or both are odd.
Suppose there is just one of $a$ or $b$ that is odd.
$$\begin{align} n&=(2k+1)(2q)\\ &=4kq+2q\\ &=2(2kq+q) \end{align}$$
This contradicts the fact that $n$ is odd, so both $a$ and $b$ must be odd.
$$\begin{align} n&=(2k+1)(2q+1)\\ &=4kq+2k+2q+1\\ &=2(2kq+k+q)+1\\ \frac{n-1}{2}&=2kq+k+q \end{align}$$
Solving for $k$ gives us
$$k=\frac{n-1-2q}{2+4q}$$
Now we need to get one value of $q$ such that $k$ is an integer
Trying values of $q$ starting from $0$ gives the value $q=3$ and $k=2340$, so $a=4681$ and $b=7$.
But I don't like the last step of just trying numbers. Is there a sistematic way to get the answer without just guessing values for $q$ or $k$?