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