A199370 Decimal expansion of x>0 satisfying x^2+x*sin(x)=1.
7, 2, 2, 5, 8, 7, 5, 4, 9, 9, 2, 2, 5, 2, 4, 7, 6, 8, 3, 5, 5, 9, 3, 2, 8, 7, 2, 8, 7, 7, 1, 9, 6, 7, 5, 5, 1, 5, 9, 6, 4, 5, 9, 2, 1, 1, 4, 3, 9, 4, 2, 6, 9, 8, 0, 7, 7, 6, 5, 1, 4, 7, 6, 0, 2, 5, 9, 0, 9, 4, 2, 5, 0, 7, 3, 1, 6, 0, 1, 8, 3, 0, 3, 4, 3, 5, 6, 2, 9, 4, 1, 8, 7, 2, 7, 9, 8, 3, 3
Offset: 0
Examples
0.722587549922524768355932872877196755159...
Programs
-
Mathematica
(* Program 1: A199370 *) a = 1; b = 1; c = 1; f[x_] := a*x^2 + b*x*Sin[x]; g[x_] := c Plot[{f[x], g[x]}, {x, -1, Pi}, {AxesOrigin -> {0, 0}}] r = x /. FindRoot[f[x] == g[x], {x, .72, .73}, WorkingPrecision -> 110] RealDigits[r] (* A199370 *) (* Program 2: implicit surface of x^2+u*x*sin(x)=v *) f[{x_, u_, v_}] := x^2 + u*x*Sin[x] - v; t = Table[{u, v, x /. FindRoot[f[{x, u, v}] == 0, {x, 0, 1}]}, {u, 0, 2.9}, {v, u, 600}]; ListPlot3D[Flatten[t, 1]] (* for A199370 *)
Comments