OFFSET
1,2
COMMENTS
The only real value among the unique solution {a, b, c} of a^k + b^k + c^k = k, k = 1, 2 and 3. (These three equations also imply that abc = 1/6, a^4 + b^4 + c^4 = 25/6 and a^5 + b^5 + c^5 = 6, without solving for the explicit solution.)
LINKS
Steve Chow, Extreme Algebra Question (#patience), BlackPenRedPen on YouTube, Apr 7, 2019.
FORMULA
c = (2 + (44 - 6 sqrt(26))^(1/3) + (44 + 6 sqrt(26))^(1/3))/6
= 1.4308495662427889282302178498925508059662021462557428050651805117...
MATHEMATICA
RealDigits[x /. FindRoot[x^3 - x^2 - x/2 - 1/6 == 0, {x, 1}, WorkingPrecision -> 120], 10, 100][[1]] (* Amiram Eldar, Oct 22 2020 *)
RealDigits[Root[-1 - 3 # - 6 #^2 + 6 #^3 &, 1], 10, 100][[1]] (* Jan Mangaldan, Nov 24 2020 *)
PROG
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
M. F. Hasler, Oct 22 2020
STATUS
approved