Are there arbitary large $b$ such that the diophantine equation $a^3-n\cdot b^3=1$ has a solution?

133 Views Asked by At

It is well known that the pell-equation $$a^2-n\cdot b^2 =1$$ has a non-trivial solution for every positive integer $n$ not being a perfect square. And the fundamental solution can be very large.

What about the analogue equation $$a^3-n\cdot b^3=1$$ ?

I checked the first $30$ convergents of the non-cubes upto $10^5$ and only found the following solutions with $b\ge 10$ :

? for(n=1,10^5,s=sqrtnint(n,3);if(s^3<>n,for(j=1,30,w=contfracpnqn(contfrac(n^(1
/3)),j);[a,b]=[w[1,j],w[2,j]];if(a^3-b^3*n==1,if(b>=10,print(n,"  ",a," ",b)))))
)
635  361 42
5080  361 21
17145  361 14
18745  1036 39
32042  667 21
48949  4097 112
?

So, a "spectaculary" equation as $$4097^3-112^3\cdot 48949=1$$ seems to occur rather rarely. I would like to know something about how much such solutions exist, in particular can $b$ get arbitary large ?

1

There are 1 best solutions below

0
On BEST ANSWER

Well, you could just, for example, pick $b$ to be your favourite large prime with $b \equiv 1 \mod{3}$. Then there are three cube roots of unit modulo $b^3$. Choose a nontrivial one of these and you have an example. For instance, if $b=1000003$, we have $$ 333357166884000946^3 - 37044648719139238281882107242355205 \cdot 1000003^3=1. $$