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!)
A200303 Decimal expansion of least x satisfying 4*x^2 - 3*cos(x) = 4*sin(x), negated. 3
4, 6, 7, 6, 4, 3, 6, 3, 2, 2, 2, 9, 0, 5, 6, 5, 3, 4, 2, 0, 3, 5, 4, 0, 0, 4, 9, 4, 7, 7, 1, 6, 5, 0, 1, 3, 9, 2, 4, 1, 6, 9, 8, 1, 7, 2, 2, 4, 0, 2, 6, 3, 5, 7, 1, 6, 8, 7, 3, 2, 8, 1, 2, 7, 5, 7, 8, 8, 0, 9, 5, 9, 8, 2, 5, 0, 6, 1, 3, 9, 9, 5, 1, 3, 0, 2, 3, 8, 8, 9, 3, 3, 8, 9, 3, 9, 4, 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.4676436322290565342035400494771...
greatest x: 1.10881188297172762185849535228...
MATHEMATICA
a = 4; b = -3; c = 4;
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, -.47, -.46}, WorkingPrecision -> 110]
RealDigits[r] (* A200303 *)
r = x /. FindRoot[f[x] == g[x], {x, 1.1, 1.2}, WorkingPrecision -> 110]
RealDigits[r] (* A200304 *)
PROG
(PARI) a=4; b=-3; c=4; solve(x=-1, 0, a*x^2 + b*cos(x) - c*sin(x)) \\ G. C. Greubel, Jul 08 2018
CROSSREFS
Cf. A199949.
Sequence in context: A197585 A019605 A201564 * A309606 A288179 A198882
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 March 28 05:39 EDT 2024. Contains 371235 sequences. (Running on oeis4.)