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.

A090655 Decimal expansion of solution to n/x = x-n for n = 9.

Original entry on oeis.org

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

Views

Author

Felix Tubiana, Feb 05 2004

Keywords

Comments

n/x = x-n with n=1 gives the Golden Ratio = 1.6180339887...
Equals n +n/(n +n/(n +n/(n +....))) for n = 9. See also A090388. - Stanislav Sykora, Jan 23 2014

Examples

			9.90832691319598...
		

Crossrefs

Cf. n+n/(n+n/(n+...)): A090388 (n=2), A090458 (n=3), A090488 (n=4), A090550 (n=5), A092294 (n=6), A092290 (n=7), A090654 (n=8), A090656 (n=10). - Stanislav Sykora, Jan 23 2014

Programs

  • Mathematica
    RealDigits[(3/2)*(3+Sqrt[13]), 10, 50][[1]] (* G. C. Greubel, Jul 03 2017 *)
  • PARI
    (3/2)*(3 + sqrt(13)) \\ G. C. Greubel, Jul 03 2017

Formula

n/x = x-n ==> x^2 - n*x - n = 0 ==> x = (n + sqrt(n^2 + 4*n)) / 2 (Positive Root) n = 9: x = (9 + sqrt(117))/2 = 9.90832691319598...
Equals (3/2)*(3 + sqrt(13)). - G. C. Greubel, Jul 03 2017