login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A200124 Decimal expansion of least x satisfying 2*x^2 - 3*cos(x) = 3*sin(x), negated. 3
6, 0, 9, 4, 1, 6, 8, 3, 3, 2, 6, 3, 2, 7, 5, 2, 9, 9, 9, 3, 0, 7, 5, 3, 5, 9, 9, 3, 1, 6, 0, 5, 4, 8, 2, 2, 7, 8, 5, 2, 3, 3, 0, 3, 0, 5, 9, 3, 5, 8, 3, 5, 5, 5, 9, 6, 0, 5, 1, 3, 3, 4, 7, 1, 7, 8, 1, 7, 1, 9, 6, 0, 4, 8, 7, 5, 2, 6, 3, 9, 0, 1, 3, 4, 2, 5, 3, 7, 1, 3, 4, 8, 5, 4, 4, 5, 6, 0, 3 (list; constant; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
See A199949 for a guide to related sequences. The Mathematica program includes a graph.
LINKS
EXAMPLE
least x: -0.6094168332632752999307535993160...
greatest x: 1.34204053424075776611980105081...
MATHEMATICA
a = 2; b = -3; c = 3;
f[x_] := a*x^2 + b*Cos[x]; g[x_] := c*Sin[x]
Plot[{f[x], g[x]}, {x, -3, 3}, {AxesOrigin -> {0, 0}}]
r = x /. FindRoot[f[x] == g[x], {x, -.61, -.60}, WorkingPrecision -> 110]
RealDigits[r] (* A200124 *)
r = x /. FindRoot[f[x] == g[x], {x, 1.34, 1.35}, WorkingPrecision -> 110]
RealDigits[r] (* A200125 *)
PROG
(PARI) a=2; b=-3; c=3; solve(x=-1, 0, a*x^2 + b*cos(x) - c*sin(x)) \\ G. C. Greubel, Jul 01 2018
CROSSREFS
Cf. A199949.
Sequence in context: A232815 A323606 A133077 * A016628 A112246 A189037
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Nov 14 2011
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 13:27 EDT 2024. Contains 371971 sequences. (Running on oeis4.)