A198421 Decimal expansion of x>0 having x^2-x=2*sin(x).
1, 9, 5, 1, 4, 8, 7, 5, 3, 4, 0, 9, 5, 6, 6, 9, 7, 7, 6, 5, 4, 7, 0, 7, 3, 8, 5, 1, 8, 7, 7, 5, 5, 4, 9, 1, 8, 5, 1, 6, 9, 3, 7, 9, 3, 3, 0, 4, 4, 3, 5, 5, 4, 6, 7, 3, 2, 4, 7, 1, 8, 3, 4, 2, 8, 0, 3, 8, 6, 4, 2, 7, 1, 9, 2, 2, 5, 1, 5, 2, 2, 5, 7, 3, 2, 2, 0, 9, 9, 7, 9, 1, 2, 9, 5, 7, 3, 3, 5
Offset: 1
Examples
1.9514875340956697765470738518775549185...
Crossrefs
Cf. A198414.
Programs
-
Mathematica
a = 1; b = -1; c = 2; f[x_] := a*x^2 + b*x; g[x_] := c*Sin[x] Plot[{f[x], g[x]}, {x, -1, 2}] r = x /. FindRoot[f[x] == g[x], {x, 1.9, 2.0}, WorkingPrecision -> 110] RealDigits[r] (* A198421 *)
Comments