login
A199505
Decimal expansion of x>0 satisfying 3*x^2-x*sin(x)=cos(x).
2
6, 2, 6, 4, 7, 0, 1, 4, 9, 1, 6, 1, 3, 5, 9, 1, 8, 6, 5, 7, 0, 2, 4, 4, 2, 7, 0, 7, 0, 8, 7, 0, 4, 2, 8, 7, 0, 5, 8, 4, 7, 2, 3, 7, 1, 4, 2, 7, 3, 9, 7, 8, 8, 7, 7, 5, 3, 7, 3, 8, 4, 2, 5, 2, 9, 4, 9, 7, 3, 2, 1, 3, 7, 6, 9, 5, 0, 4, 7, 7, 4, 7, 6, 3, 0, 2, 5, 0, 0, 1, 9, 0, 7, 5, 9, 5, 3, 7, 9
OFFSET
0,1
COMMENTS
See A199429 for a guide to related sequences. The Mathematica program includes a graph.
EXAMPLE
x=0.6264701491613591865702442707087042870584...
MATHEMATICA
a = 3; 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, .62, .63}, WorkingPrecision -> 110]
RealDigits[r] (* A199505 *)
CROSSREFS
Cf. A199429.
Sequence in context: A198986 A236190 A198227 * A241033 A216992 A308258
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Nov 07 2011
STATUS
approved