A357101 Decimal expansion of the real root of x^3 - 2*x^2 - 2.
2, 3, 5, 9, 3, 0, 4, 0, 8, 5, 9, 7, 1, 7, 7, 6, 4, 2, 0, 7, 3, 0, 6, 6, 0, 3, 9, 2, 8, 0, 0, 5, 3, 2, 5, 5, 5, 3, 4, 6, 4, 8, 1, 2, 7, 8, 0, 6, 7, 6, 7, 2, 2, 8, 3, 7, 9, 7, 1, 4, 1, 2, 5, 1, 5, 8, 3, 8, 7, 5, 5, 8, 8, 9, 4, 4, 6, 5
Offset: 1
Examples
2.359304085971776420730660392800532555346481278067672283797141251583875588...
Crossrefs
Cf. A058265 - 1 (x^3 + 2*x^2 - 2).
Programs
-
Maple
h := ((35 + 3*sqrt(129))/8)^(1/3): evalf((1 + h + 1/h)*2/3, 82); # Peter Luschny, Sep 25 2022
-
Mathematica
RealDigits[x /. FindRoot[x^3 - 2*x^2 - 2, {x, 2}, WorkingPrecision -> 120]][[1]] (* Amiram Eldar, Sep 21 2022 *)
-
PARI
polrootsreal(x^3 - 2*x^2 - 2)[1] \\ Michel Marcus, Sep 23 2022
Formula
r = ((35 + 3*sqrt(129))^(1/3) + 4*(35 + 3*sqrt(129))^(-1/3) + 2)/3.
r = ((35 + 3*sqrt(129))^(1/3) + (35 - 3*sqrt(129))^(1/3) + 2)/3.
r = (2/3)*(2*cosh((1/3)*arccosh(35/8)) + 1).
Comments