login
A199432
Decimal expansion of x>0 satisfying x^2+2*x*sin(x)=cos(x).
2
5, 4, 3, 0, 4, 7, 6, 2, 4, 4, 0, 7, 4, 0, 1, 0, 3, 7, 9, 6, 0, 7, 3, 5, 5, 9, 0, 1, 4, 3, 7, 6, 5, 2, 9, 5, 6, 0, 7, 0, 7, 4, 5, 4, 3, 6, 8, 2, 9, 8, 9, 9, 8, 0, 8, 1, 3, 6, 3, 3, 6, 4, 1, 0, 3, 9, 8, 4, 8, 2, 0, 5, 8, 1, 0, 2, 1, 9, 5, 6, 8, 7, 9, 5, 4, 5, 8, 4, 9, 5, 2, 0, 3, 1, 5, 2, 5, 0, 1
OFFSET
0,1
COMMENTS
See A199370 for a guide to related sequences. The Mathematica program includes a graph.
EXAMPLE
x=0.5430476244074010379607355901437652956070...
MATHEMATICA
a = 1; b = 2; 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, .54, .55}, WorkingPrecision -> 110]
RealDigits[r] (* A199432 *)
CROSSREFS
Cf. A199429.
Sequence in context: A097960 A019712 A020799 * A073743 A021652 A360778
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Nov 06 2011
STATUS
approved