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!)
A200014 Decimal expansion of least x satisfying x^2 - cos(x) = 3*sin(x), negated. 3
2, 9, 4, 3, 4, 8, 7, 7, 2, 3, 3, 5, 6, 8, 6, 3, 9, 8, 3, 6, 9, 6, 5, 7, 8, 9, 0, 2, 0, 3, 6, 1, 9, 5, 0, 3, 0, 8, 6, 7, 2, 1, 9, 9, 0, 0, 5, 9, 4, 0, 0, 3, 2, 8, 8, 8, 6, 8, 4, 1, 8, 0, 1, 6, 5, 1, 9, 9, 9, 8, 1, 5, 0, 7, 0, 7, 8, 4, 3, 8, 3, 5, 7, 8, 4, 4, 7, 6, 2, 2, 5, 3, 2, 2, 6, 0, 3, 9, 8 (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.2943487723356863983696578902036195...
greatest x: 1.690779738969815334957504857558809...
MATHEMATICA
a = 1; b = -1; c = 3;
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, -.3, -.29}, WorkingPrecision -> 110]
RealDigits[r] (* A200014 *)
r = x /. FindRoot[f[x] == g[x], {x, 1.6, 1.7}, WorkingPrecision -> 110]
RealDigits[r] (* A200015 *)
PROG
(PARI) a=1; b=-1; c=3; solve(x=-1, 0, a*x^2 + b*cos(x) - c*sin(x)) \\ G. C. Greubel, Jun 23 2018
CROSSREFS
Cf. A199949.
Sequence in context: A336802 A011067 A135008 * A335007 A248968 A097881
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Nov 12 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 20 09:04 EDT 2024. Contains 371799 sequences. (Running on oeis4.)