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.

A202543 Decimal expansion of the number x satisfying e^(x/2) - e^(-x/2) = 1.

This page as a plain text file.
%I A202543 #64 Mar 02 2025 23:40:17
%S A202543 9,6,2,4,2,3,6,5,0,1,1,9,2,0,6,8,9,4,9,9,5,5,1,7,8,2,6,8,4,8,7,3,6,8,
%T A202543 4,6,2,7,0,3,6,8,6,6,8,7,7,1,3,2,1,0,3,9,3,2,2,0,3,6,3,3,7,6,8,0,3,2,
%U A202543 7,7,3,5,2,1,6,4,4,3,5,4,8,8,2,4,0,1,8,8,5,8,2,4,5,4,4,6,9,4,9
%N A202543 Decimal expansion of the number x satisfying e^(x/2) - e^(-x/2) = 1.
%C A202543 See A202537 for a guide to related sequences. The Mathematica program includes a graph.
%C A202543 W. Gawronski et al. in their paper - see ref. below - obtained the asymptotics for the Chebyshev-Stirling numbers. In the algebraic description of the respective "asymptotic coefficients" the number x = 2*log phi, where phi is the golden section, play the central role. - _Roman Witula_, Feb 02 2015
%C A202543 Also two times the Lévy measure for the continued fraction of the golden section, i.e., A202543/log(2) is the mean number of bits gained from the next convergent of the continued fraction representation. (See also Dan Lascu in links.) - _A.H.M. Smeets_, Jun 06 2018
%H A202543 W. Gawronski, L. L. Littlejohn, and T. Neuschel, <a href="http://arxiv.org/abs/1308.6803">Asymptotics of Stirling and Chebyshev-Stirling numbers of the second kind</a>, arXiv:1308.6803 [math.CO], 2013.
%H A202543 W. Gawronski, L. L. Littlejohn, and T. Neuschel, <a href="http://dx.doi.org/10.1111/sapm.12037">Asymptotics of Stirling and Chebyshev-Stirling numbers of the second kind</a>, Studies in Applied Mathematics by MIT 133 (2014), 1-17.
%H A202543 Dan Lascu, <a href="https://doi.org/10.1016/j.jnt.2012.12.007">A Gauss-Kuzmintype problem for a family of continued fraction expansions</a>, Journal of Number Theory 133 (2013), 2153-2181.
%H A202543 <a href="/index/Tra#transcendental">Index entries for transcendental numbers</a>
%F A202543 Equals 2*A002390. - _A.H.M. Smeets_, Jun 06 2018
%F A202543 From _Amiram Eldar_, Aug 21 2020: (Start)
%F A202543 Equals log(A104457) = log(1 + A001622).
%F A202543 Equals 2*arcsinh(1/2). [corrected by _Georg Fischer_, Jul 12 2021]
%F A202543 Equals Sum_{k>=0} (-1)^k*binomial(2*k,k)/((2*k+1)*16^k). (End)
%F A202543 Equals Pi*i + Sum_{k>=0} arctanh(phi^(2^k))/2^k, with phi = A001622 and i = sqrt(-1). - _Antonio Graciá Llorente_, Feb 13 2025
%e A202543 0.9624236501192068949955178268487368462703686...
%t A202543 u = 1/2; v = 1/2;
%t A202543 f[x_] := E^(u*x) - E^(-v*x); g[x_] := 1
%t A202543 Plot[{f[x], g[x]}, {x, 0, 2}, {AxesOrigin -> {0, 0}}]
%t A202543 r = x /. FindRoot[f[x] == g[x], {x, .9, 1}, WorkingPrecision -> 110]
%t A202543 RealDigits[r]    (* A202543 *)
%t A202543 RealDigits[ Log[ (3+Sqrt[5])/2], 10, 99] // First (* _Jean-François Alcover_, Feb 27 2013 *)
%t A202543 RealDigits[ FindRoot[ Exp[x/2] == 1 +  Exp[-x/2] , {x, 0}, WorkingPrecision -> 128][[1, 2]]][[1]] (* _Robert G. Wilson v_, Jun 13 2018 *)
%o A202543 (PARI) 2*asinh(1/2) \\ _Michel Marcus_, Jun 24 2018, after A002390
%Y A202543 Cf. A001622, A002390, A104457, A202537, A202543.
%K A202543 nonn,cons
%O A202543 0,1
%A A202543 _Clark Kimberling_, Dec 21 2011
%E A202543 Typo in name fixed by _Jean-François Alcover_, Feb 27 2013