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”).

A200229
Decimal expansion of least x satisfying 3*x^2 - 2*cos(x) = sin(x), negated.
3
6, 0, 1, 0, 8, 4, 6, 0, 8, 5, 4, 4, 7, 4, 4, 5, 7, 8, 0, 8, 4, 0, 9, 1, 5, 7, 5, 7, 9, 3, 7, 9, 2, 4, 3, 7, 0, 9, 6, 4, 9, 2, 5, 9, 9, 3, 5, 3, 1, 9, 7, 6, 9, 7, 2, 6, 3, 5, 3, 5, 4, 8, 0, 6, 8, 5, 1, 4, 2, 3, 0, 5, 2, 9, 4, 8, 1, 1, 0, 4, 5, 6, 6, 1, 1, 3, 2, 2, 1, 0, 5, 2, 6, 2, 2, 3, 1, 5, 1
OFFSET
0,1
COMMENTS
See A199949 for a guide to related sequences. The Mathematica program includes a graph.
LINKS
EXAMPLE
least x: -0.6010846085447445780840915757937924370...
greatest x: 0.83362047030745407827417017871253212...
MATHEMATICA
a = 3; b = -2; c = 1;
f[x_] := a*x^2 + b*Cos[x]; g[x_] := c*Sin[x]
Plot[{f[x], g[x]}, {x, -2, 2}, {AxesOrigin -> {0, 0}}]
r = x /. FindRoot[f[x] == g[x], {x, -.61, -.60}, WorkingPrecision -> 110]
RealDigits[r] (* A200229 *)
r = x /. FindRoot[f[x] == g[x], {x, .83, .84}, WorkingPrecision -> 110]
RealDigits[r] (* A200230 *)
PROG
(PARI) a=3; b=-2; c=1; solve(x=-1, 0, a*x^2 + b*cos(x) - c*sin(x)) \\ G. C. Greubel, Jun 30 2018
CROSSREFS
Cf. A199949.
Sequence in context: A051626 A357003 A264808 * A137785 A199568 A134899
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Nov 14 2011
STATUS
approved