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.

A093157 Decimal expansion of inflection point of x^(1/x).

Original entry on oeis.org

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

Views

Author

Eric W. Weisstein, Mar 25 2004

Keywords

Comments

The smaller of the two real roots of 1 - 3*x + log(x)*(log(x) + 2*x - 2) = 0. - Amiram Eldar, Jun 17 2021

Examples

			0.581932705...
		

Crossrefs

Programs

  • Mathematica
    f[x_] := x^(1/x); RealDigits[ x /. FindRoot[ f''[x] == 0, {x, 1/2}, WorkingPrecision -> 102]] // First (* Jean-François Alcover, Feb 08 2013 *)