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

A200302
Decimal expansion of greatest x satisfying 4*x^2 - 3*cos(x) = 3*sin(x).
2
1, 0, 1, 6, 1, 4, 3, 9, 5, 6, 7, 2, 3, 5, 5, 8, 7, 3, 3, 7, 9, 9, 4, 5, 5, 9, 0, 1, 2, 9, 6, 8, 6, 4, 7, 4, 6, 8, 7, 7, 9, 9, 4, 9, 2, 5, 9, 9, 2, 1, 9, 8, 1, 9, 8, 1, 9, 0, 3, 6, 6, 3, 3, 4, 1, 4, 8, 1, 0, 7, 6, 3, 7, 0, 8, 3, 4, 4, 0, 9, 5, 0, 4, 4, 0, 1, 3, 4, 3, 9, 8, 5, 6, 2, 0, 2, 9, 6, 9
OFFSET
1,4
COMMENTS
See A199949 for a guide to related sequences. The Mathematica program includes a graph.
LINKS
EXAMPLE
least x: -0.52377415675325572171784049673944...
greatest x: 1.016143956723558733799455901296...
MATHEMATICA
a = 4; b = -3; c = 3;
f[x_] := a*x^2 + b*Cos[x]; g[x_] := c*Sin[x]
Plot[{f[x], g[x]}, {x, -1, 1}, {AxesOrigin -> {0, 0}}]
r = x /. FindRoot[f[x] == g[x], {x, -.54, -.51}, WorkingPrecision -> 110]
RealDigits[r] (* A200297 *)
r = x /. FindRoot[f[x] == g[x], {x, 1, 1.05}, WorkingPrecision -> 110]
RealDigits[r] (* A200298 *)
PROG
(PARI) a=4; b=-3; c=3; solve(x=1, 2, a*x^2 + b*cos(x) - c*sin(x)) \\ G. C. Greubel, Jul 08 2018
CROSSREFS
Cf. A199949.
Sequence in context: A212037 A118740 A301431 * A082344 A021865 A198565
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Nov 15 2011
STATUS
approved