The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A200097 Decimal expansion of least x satisfying x^2 - 3*cos(x) = 4*sin(x), negated. 3
5, 7, 6, 8, 9, 1, 1, 7, 6, 9, 6, 2, 1, 8, 6, 4, 3, 5, 7, 5, 2, 4, 3, 6, 5, 9, 7, 7, 1, 8, 2, 6, 1, 6, 8, 8, 1, 3, 0, 0, 1, 4, 9, 2, 6, 4, 9, 3, 8, 9, 4, 3, 7, 3, 7, 0, 9, 4, 4, 4, 3, 6, 3, 0, 1, 9, 9, 8, 0, 5, 6, 2, 7, 8, 9, 7, 6, 0, 4, 1, 7, 0, 4, 0, 7, 2, 5, 0, 1, 3, 7, 5, 2, 3, 3, 7, 1, 0, 6 (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.576891176962186435752436597718261688130...
greatest x: 1.79646741863500842707885236614949093773...
MATHEMATICA
a = 1; b = -3; c = 4;
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, -.58, -.57}, WorkingPrecision -> 110]
RealDigits[r] (* A200097 *)
r = x /. FindRoot[f[x] == g[x], {x, 1.79, 1.80}, WorkingPrecision -> 110]
RealDigits[r] (* A200098 *)
PROG
(PARI) a=1; b=-3; c=4; solve(x=-1, 0, a*x^2 + b*cos(x) - c*sin(x)) \\ G. C. Greubel, Jun 24 2018
CROSSREFS
Cf. A199949.
Sequence in context: A193013 A220607 A348607 * A314371 A217678 A227452
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Nov 13 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 May 13 05:55 EDT 2024. Contains 372498 sequences. (Running on oeis4.)