Newly, there was a solution found for the following equation in integers:
x^3 + y^3 + z^3 = 33
Namely, it holds for x = 8866128975287528, y= -8778405442862239, and z=-2736111468807040
If I check it in Python, it's fine:
>>> (8866128975287528)**3 - (8778405442862239)**3 - (2736111468807040)**3
33L
However, in R it doesn't work:
8866128975287528^3 - 8778405442862239^3 - 2736111468807040^3
[1] -2.535301e+30
Why?