login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A199603
Decimal expansion of least x satisfying x+3*cos(x)=0.
3
1, 1, 7, 0, 1, 2, 0, 9, 5, 0, 0, 0, 2, 6, 2, 6, 0, 5, 3, 7, 0, 6, 0, 4, 3, 0, 1, 1, 8, 5, 8, 9, 7, 1, 0, 8, 1, 9, 9, 9, 4, 0, 2, 0, 2, 5, 9, 5, 5, 5, 1, 5, 6, 4, 7, 4, 1, 6, 8, 1, 9, 7, 4, 4, 3, 7, 0, 0, 2, 4, 9, 2, 4, 7, 7, 1, 7, 3, 0, 8, 4, 2, 6, 4, 7, 9, 9, 0, 8, 0, 1, 1, 0, 0, 7, 0, 8, 0, 5
OFFSET
1,3
COMMENTS
See A199597 for a guide to related sequences. The Mathematica program includes a graph.
EXAMPLE
least: -1.1701209500026260537060430118589710...
greatest: 2.9381003939708118076581364784259...
MATHEMATICA
a = 1; b = 3; c = 0;
f[x_] := a*x^2 + b*x*Cos[x]; g[x_] := c*Sin[x]
Plot[{f[x], g[x]}, {x, -1.5, 3.5}, {AxesOrigin -> {0, 0}}]
r = x /. FindRoot[f[x] == g[x], {x, -1.2, -1.1}, WorkingPrecision -> 110]
RealDigits[r] (* A199603 least of 4 roots *)
r = x /. FindRoot[f[x] == g[x], {x, 2.93, 2.94}, WorkingPrecision -> 110]
RealDigits[r] (* A199604 greatest of 4 roots *)
CROSSREFS
Cf. A199597.
Sequence in context: A061846 A335947 A293530 * A121570 A169681 A202354
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Nov 08 2011
STATUS
approved