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!)
A200102 Decimal expansion of greatest x satisfying x^2 - 4*cos(x) = 2*sin(x). 3
1, 5, 0, 4, 0, 7, 4, 3, 6, 5, 6, 0, 3, 9, 0, 8, 4, 5, 6, 2, 5, 7, 7, 0, 9, 6, 8, 1, 3, 1, 2, 5, 9, 7, 2, 7, 8, 5, 5, 0, 0, 6, 5, 6, 0, 9, 3, 9, 5, 9, 0, 8, 3, 2, 2, 3, 4, 0, 3, 8, 1, 1, 2, 3, 9, 7, 6, 0, 1, 6, 5, 6, 2, 7, 5, 7, 6, 0, 1, 4, 0, 7, 0, 4, 0, 8, 6, 7, 1, 7, 2, 8, 3, 5, 5, 4, 8, 7, 5 (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.91770131583160047517052439095392148771...
greatest x: 1.50407436560390845625770968131259727...
MATHEMATICA
a = 1; b = -4; c = 2;
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, -.92, -.91}, WorkingPrecision -> 110]
RealDigits[r] (* A200101 *)
r = x /. FindRoot[f[x] == g[x], {x, 1.5, 1.6}, WorkingPrecision -> 110]
RealDigits[r] (* A200102 *)
PROG
(PARI) a=1; b=-4; c=2; solve(x=1, 2, a*x^2 + b*cos(x) - c*sin(x)) \\ G. C. Greubel, Jun 25 2018
CROSSREFS
Cf. A199949.
Sequence in context: A076266 A350281 A354053 * A016581 A175472 A099220
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 April 19 09:23 EDT 2024. Contains 371782 sequences. (Running on oeis4.)