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!)
A200279 Decimal expansion of least x satisfying 3*x^2 - 4*cos(x) = 2*sin(x), negated. 3
7, 3, 5, 6, 3, 8, 0, 7, 6, 4, 4, 4, 6, 8, 2, 0, 8, 6, 1, 4, 7, 7, 6, 9, 5, 5, 6, 1, 2, 3, 1, 1, 6, 8, 1, 9, 6, 8, 7, 7, 6, 5, 5, 3, 8, 3, 9, 9, 4, 8, 2, 5, 4, 5, 9, 7, 7, 0, 5, 1, 1, 3, 8, 7, 9, 4, 5, 8, 4, 1, 7, 8, 0, 7, 1, 9, 1, 9, 7, 3, 5, 5, 2, 8, 4, 2, 2, 0, 3, 5, 6, 5, 9, 2, 8, 5, 8, 5, 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.73563807644468208614776955612311...
greatest x: 1.096406992421267947221987681314...
MATHEMATICA
a = 3; b = -4; c = 2;
f[x_] := a*x^2 + b*Cos[x]; g[x_] := c*Sin[x]
Plot[{f[x], g[x]}, {x, -2, 2}, {AxesOrigin -> {0, 0}}]
r = x /. FindRoot[f[x] == g[x], {x, -.74, -.73}, WorkingPrecision -> 110]
RealDigits[r] (* A200279 *)
r = x /. FindRoot[f[x] == g[x], {x, 1.0, 1.1}, WorkingPrecision -> 110]
RealDigits[r] (* A200280 *)
PROG
(PARI) a=3; b=-4; c=2; solve(x=-1, 0, a*x^2 + b*cos(x) - c*sin(x)) \\ G. C. Greubel, Jul 07 2018
CROSSREFS
Cf. A199949.
Sequence in context: A304658 A253298 A155987 * A213085 A119714 A154889
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Nov 15 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 19 23:40 EDT 2024. Contains 371798 sequences. (Running on oeis4.)