A202500 Decimal expansion of x satisfying x=e^(-Pi*x).
3, 4, 1, 7, 5, 6, 0, 1, 7, 7, 8, 5, 8, 5, 6, 3, 9, 6, 8, 3, 1, 2, 6, 7, 1, 6, 6, 7, 7, 1, 7, 0, 5, 8, 3, 5, 1, 4, 5, 1, 6, 5, 4, 7, 6, 9, 3, 8, 9, 3, 9, 4, 4, 3, 6, 7, 5, 5, 6, 9, 3, 0, 1, 3, 5, 1, 5, 8, 2, 9, 7, 2, 2, 5, 1, 1, 9, 8, 9, 1, 2, 2, 4, 6, 7, 5, 1, 3, 1, 3, 8, 5, 9, 8, 8, 1, 3, 1, 2
Offset: 0
Examples
x=0.34175601778585639683126716677170583514516547...
Crossrefs
Cf. A202348.
Programs
-
Mathematica
u = -Pi; v = 0; f[x_] := x; g[x_] := E^(u*x + v) Plot[{f[x], g[x]}, {x, -1, 1}, {AxesOrigin -> {0, 0}}] r = x /. FindRoot[f[x] == g[x], {x, .3, .4}, WorkingPrecision -> 110] RealDigits[r] (* A202500 *) RealDigits[ ProductLog[Pi]/Pi, 10, 99] // First (* Jean-François Alcover, Feb 27 2013 *)
Comments