Assume $a,b,c, N$ as positive integers, let primitive be $\gcd(a,b,c) = 1$ and,
$$a^2+b^2 = c^2\tag{1}$$
Supposing you want to know how many solutions there are with $c$ less than a bound $N$. Lehmer showed that, define the number of primitive Pythagorean triples as $\Delta N$, then,
$$\lim_{N\to\infty}\frac{\Delta N}{N}=\frac{1}{2\pi}$$
Thus, for example, for $N = 10^5$, then $\Delta N \approx \frac{1}{2\pi}10^5 \approx 15915.5$. (The exact number is $15919$.)
I wondered about $(1)$'s cubic analogue. The closest seems to be,
$$a^3+b^3 = c^3\pm1\tag{2}$$
and there are exactly $133$ solutions with $c<10^6$.
Question: How many solutions for $c<10^7$, or $c<10^8$? In general, just like Lehmer's result, is there a way to estimate how many solutions $(2)$ will have for $c<N$?
P.S. A question of mine on the asymptotics of the analogous $a^2+b^2 = c^2\pm1$ was ably answered by mercio in this post.