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