A201939 Decimal expansion of x>0 satisfying x*cosh(x)=2.
1, 1, 5, 0, 5, 8, 4, 9, 6, 7, 4, 1, 8, 6, 6, 3, 9, 4, 9, 5, 3, 4, 9, 3, 3, 7, 3, 3, 6, 1, 3, 7, 8, 8, 1, 9, 5, 7, 6, 6, 8, 3, 7, 4, 9, 4, 8, 4, 4, 2, 4, 2, 3, 4, 1, 1, 8, 3, 3, 9, 2, 5, 1, 8, 0, 8, 8, 3, 2, 2, 5, 4, 6, 1, 7, 6, 4, 1, 1, 7, 2, 8, 0, 1, 3, 6, 7, 5, 4, 4, 1, 4, 5, 2, 4, 6, 9, 9, 5
Offset: 1
Examples
1.15058496741866394953493373361378819576...
Crossrefs
Cf. A201946.
Programs
-
Mathematica
(* Program 1: A201939 *) u = 1; v = 2; f[x_] := x*Cosh[u*x]; g[x_] := v Plot[{f[x], g[x]}, {x, 0, 2}, {AxesOrigin -> {0, 0}}] r = x /. FindRoot[f[x] == g[x], {x, 1.1, 1.2}, WorkingPrecision -> 110] RealDigits[r] (* A201939 *) (* Program 2: implicit surface of u*cosh(x)=v *) f[{x_, u_, v_}] := x*Cosh[u*x] - v; t = Table[{u, v, x /. FindRoot[f[{x, u, v}] == 0, {x, 0, .2}]}, {v, 0, 20}, {u, 1, 9}]; ListPlot3D[Flatten[t, 1]] (* for A201939 *)
Comments