A198823 Decimal expansion of x>0 satisfying x^2-2*cos(x)=3.
1, 6, 7, 2, 4, 4, 1, 3, 0, 4, 8, 7, 3, 5, 2, 9, 5, 1, 3, 4, 3, 2, 9, 6, 0, 4, 5, 2, 0, 8, 9, 4, 0, 1, 9, 9, 7, 3, 8, 0, 1, 2, 6, 6, 8, 0, 9, 7, 1, 9, 8, 0, 0, 3, 5, 5, 4, 9, 6, 6, 6, 6, 6, 8, 4, 4, 7, 5, 4, 7, 0, 2, 4, 8, 4, 3, 7, 1, 3, 1, 3, 4, 3, 3, 9, 0, 1, 4, 0, 8, 7, 2, 2, 7, 5, 5, 4, 2, 2
Offset: 1
Examples
1.672441304873529513432960452089401997380126680...
Crossrefs
Cf. A198755.
Programs
-
Mathematica
a = 1; b = -2; c = 3; f[x_] := a*x^2 + b*Cos[x]; g[x_] := c Plot[{f[x], g[x]}, {x, -3, 3}, {AxesOrigin -> {0, 0}}] r = x /. FindRoot[f[x] == g[x], {x, 1.6, 1.7}, WorkingPrecision -> 110] RealDigits[r] (* A198823 *)
Comments