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!)
A200127 Decimal expansion of greatest x satisfying 2*x^2 - 3*cos(x) = 4*sin(x). 3
1, 4, 6, 5, 2, 3, 5, 3, 8, 6, 1, 4, 2, 6, 3, 1, 8, 5, 6, 9, 4, 5, 9, 2, 6, 8, 3, 0, 5, 7, 2, 6, 9, 4, 9, 2, 6, 9, 0, 0, 7, 8, 8, 8, 6, 2, 5, 1, 9, 6, 6, 4, 6, 8, 7, 8, 7, 8, 3, 9, 7, 1, 6, 8, 3, 1, 4, 1, 7, 3, 5, 2, 9, 3, 5, 6, 5, 7, 7, 2, 4, 5, 6, 1, 7, 8, 8, 7, 7, 2, 4, 7, 3, 1, 0, 3, 9, 9, 1 (list; constant; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
See A199949 for a guide to related sequences. The Mathematica program includes a graph.
LINKS
EXAMPLE
least x: -0.530633047496848880166804175671064100...
greatest x: 1.4652353861426318569459268305726949...
MATHEMATICA
a = 2; 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, -.54, -.53}, WorkingPrecision -> 110]
RealDigits[r] (* A200126 *)
r = x /. FindRoot[f[x] == g[x], {x, 1.46, 1.47}, WorkingPrecision -> 110]
RealDigits[r] (* A200127 *)
PROG
(PARI) a=2; b=-3; c=4; solve(x=1, 2, a*x^2 + b*cos(x) - c*sin(x)) \\ G. C. Greubel, Jul 01 2018
CROSSREFS
Cf. A199949.
Sequence in context: A019123 A308716 A021219 * A222069 A274318 A256682
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 June 5 14:50 EDT 2024. Contains 373107 sequences. (Running on oeis4.)