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!)
A200306 Decimal expansion of greatest x satisfying 4*x^2 - 4*cos(x) = sin(x). 3
9, 0, 3, 0, 5, 9, 6, 1, 3, 9, 0, 4, 8, 6, 4, 2, 5, 0, 9, 1, 0, 2, 2, 7, 4, 6, 4, 5, 5, 2, 6, 1, 6, 5, 5, 1, 3, 8, 3, 0, 6, 6, 7, 8, 4, 2, 8, 2, 3, 3, 3, 3, 9, 2, 0, 0, 9, 9, 1, 7, 6, 5, 2, 9, 4, 7, 4, 5, 4, 3, 7, 5, 5, 2, 1, 0, 1, 4, 2, 6, 7, 5, 1, 7, 6, 7, 4, 5, 5, 7, 4, 9, 6, 8, 2, 7, 4, 7, 0 (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.749483556259155223568363487735793...
greatest x: 0.9030596139048642509102274645526...
MATHEMATICA
a = 4; b = -4; c = 1;
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, -.75, -.74}, WorkingPrecision -> 110]
RealDigits[r] (* A200305 *)
r = x /. FindRoot[f[x] == g[x], {x, .90, .91}, WorkingPrecision -> 110]
RealDigits[r] (* A200306 *)
PROG
(PARI) a=4; b=-4; c=1; solve(x=0, 1, a*x^2 + b*cos(x) - c*sin(x)) \\ G. C. Greubel, Jul 08 2018
CROSSREFS
Cf. A199949.
Sequence in context: A261313 A203129 A107091 * A153790 A260932 A062523
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Nov 16 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 23 15:20 EDT 2024. Contains 371916 sequences. (Running on oeis4.)