cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A357102 Decimal expansion of the real root of x^3 + 2*x - 2.

Original entry on oeis.org

7, 7, 0, 9, 1, 6, 9, 9, 7, 0, 5, 9, 2, 4, 8, 1, 0, 0, 8, 2, 5, 1, 4, 6, 3, 6, 9, 3, 0, 7, 0, 2, 6, 9, 6, 7, 2, 5, 5, 0, 5, 3, 1, 1, 9, 3, 6, 3, 3, 2, 8, 6, 1, 5, 1, 0, 0, 5, 9, 8, 4, 9, 2, 9, 7, 6, 7, 3, 5, 1, 0, 3, 2, 8, 2, 0
Offset: 0

Views

Author

Wolfdieter Lang, Sep 20 2022

Keywords

Comments

The other two roots are (w1*(27 + 3*sqrt(105))^(1/3) + (27 - 3*sqrt(105))^(1/3))/3 = -0.3854584985... + 1.5638845105...*i, and its complex conjugate, where w1 = (-1 + sqrt(3)*i)/2 = exp(2*Pi*i/3) is one of the complex roots of x^3 - 1.
Using hyperbolic functions these roots are -(1/3)*sqrt(6)*(sinh((1/3)* arcsinh((3/4)*sqrt(6))) + sqrt(3)*cosh((1/3)*arcsinh((3/4)*sqrt(6)))*i), and its complex conjugate.

Examples

			0.770916997059248100825146369307026967255053119363328615100598492976735103...
		

Crossrefs

Cf. A273066.

Programs

  • Mathematica
    RealDigits[x /. FindRoot[x^3 + 2*x - 2, {x, 1}, WorkingPrecision -> 120]][[1]] (* Amiram Eldar, Sep 21 2022 *)
  • PARI
    solve(x=0, 1, x^3 + 2*x - 2) \\ Michel Marcus, Sep 23 2022
    
  • PARI
    polrootsreal(x^3 + 2*x - 2)[1] \\ Charles R Greathouse IV, Sep 30 2022

Formula

r = (1/3)*(27 + 3*sqrt(105))^(1/3) - 2/(27 + 3*sqrt(105))^(1/3).
r = ((27 + 3*sqrt(105))^(1/3)+ w1*(27 - 3*sqrt(105))^(1/3))/3, where w1 = (-1 + sqrt(3)*i)/2 = exp(2*Pi*i/3) is one of the complex roots of x^3 - 1.
r = (2/3)*sqrt(6)*sinh((1/3)*arcsinh((3/4)*sqrt(6))).