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

A200007
Decimal expansion of greatest x satisfying 3*x^2 + cos(x) = 4*sin(x).
3
9, 3, 5, 7, 8, 1, 9, 5, 4, 5, 6, 0, 2, 0, 1, 6, 9, 0, 6, 4, 7, 6, 9, 0, 3, 5, 6, 7, 4, 8, 3, 5, 0, 6, 5, 5, 1, 8, 6, 4, 5, 4, 2, 4, 0, 5, 5, 1, 0, 1, 8, 8, 3, 7, 9, 3, 0, 4, 1, 7, 2, 9, 1, 9, 1, 7, 6, 6, 5, 6, 9, 6, 0, 6, 1, 3, 3, 0, 9, 3, 0, 3, 4, 5, 2, 2, 9, 7, 6, 4, 4, 8, 2, 1, 4, 6, 2, 6, 7
OFFSET
0,1
COMMENTS
See A199949 for a guide to related sequences. The Mathematica program includes a graph.
LINKS
EXAMPLE
least x: 0.31916558449395611450944828046123878...
greatest x: 0.935781954560201690647690356748350...
MATHEMATICA
a = 3; b = 1; c = 4;
f[x_] := a*x^2 + b*Cos[x]; g[x_] := c*Sin[x]
Plot[{f[x], g[x]}, {x, -1, 2}, {AxesOrigin -> {0, 0}}]
r = x /. FindRoot[f[x] == g[x], {x, .31, .32}, WorkingPrecision -> 110]
RealDigits[r] (* A200006 *)
r = x /. FindRoot[f[x] == g[x], {x, .93, .94}, WorkingPrecision -> 110]
RealDigits[r] (* A200007 *)
PROG
(PARI) a=3; b=1; c=4; solve(x=.5, 1, a*x^2 + b*cos(x) - c*sin(x)) \\ G. C. Greubel, Jun 23 2018
CROSSREFS
Cf. A199949.
Sequence in context: A371604 A145924 A324995 * A153618 A171051 A230158
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Nov 12 2011
EXTENSIONS
a(89)-a(98) corrected by G. C. Greubel, Jun 23 2018
STATUS
approved