I'm trying to test a great many numbers $a^3+b^3$ to see if any of them are Fibonacci using the formula $$a^3+b^3=F_n \iff 5(a^3+b^3)^2\pm~4=L_n^2$$ I want to make my search more efficient by having some way of selecting one term, $+4$ or $-4$, that is the one more likely to produce a perfect square, and exclude the other one on the basis that it could never make a perfect square, instead of resorting to trial and error as I have been. What trick can I use to accomplish this?
Edit: I have since abandoned both the five-times-square test (initially in favor of the Mobius test, referred to in this question, which was faster) and also the looping through pairs of cubes (in favor of looping through Fibonacci indices instead). However, the answers below are helpful from a hypothetical-theoretical standpoint.