OFFSET
1,1
COMMENTS
n/x = x - n with n = 1 gives the Golden Ratio = 1.6180339887...
Equals n + n/(n + n/(n + n/(n + ....))) for n = 5. See also A090388. - Stanislav Sykora, Jan 23 2014
LINKS
FORMULA
n/x = x - n ==> x^2 - n*x - n = 0 ==> x = (n + sqrt(n^2 + 4*n)) / 2 (Positive Root) n = 5: x = (5 + sqrt(45))/2 = 5.85410196624968454...
Equals (5 + 3*sqrt(5))/2 = 1 + 3*phi = sqrt(5)*(phi)^2, where phi is the golden ratio. - G. C. Greubel, Jul 03 2017
Equals 2*phi^3 - phi^2. - Michel Marcus, Apr 20 2020
Minimal polynomial is x^2 - 5x - 5 (this number is an algebraic integer). - Alonso del Arte, Apr 20 2020(n).
EXAMPLE
5.85410196624968454...
MATHEMATICA
RealDigits[(5 + 3 Sqrt[5])/2, 10, 120][[1]] (* Harvey P. Dale, Nov 27 2013 *)
PROG
(PARI) (5 + 3*sqrt(5))/2 \\ G. C. Greubel, Jul 03 2017
CROSSREFS
KEYWORD
AUTHOR
Felix Tubiana, Feb 05 2004
STATUS
approved