Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
%I #10 Feb 27 2013 05:26:28
%S 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,
%T 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,
%U 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
%N Decimal expansion of x satisfying x=e^(-Pi*x).
%C See A202348 for a guide to related sequences. The Mathematica program includes a graph.
%e x=0.34175601778585639683126716677170583514516547...
%t u = -Pi; v = 0;
%t f[x_] := x; g[x_] := E^(u*x + v)
%t Plot[{f[x], g[x]}, {x, -1, 1}, {AxesOrigin -> {0, 0}}]
%t r = x /. FindRoot[f[x] == g[x], {x, .3, .4}, WorkingPrecision -> 110]
%t RealDigits[r] (* A202500 *)
%t RealDigits[ ProductLog[Pi]/Pi, 10, 99] // First (* _Jean-François Alcover_, Feb 27 2013 *)
%Y Cf. A202348.
%K nonn,cons
%O 0,1
%A _Clark Kimberling_, Dec 20 2011