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!)
A200225 Decimal expansion of least x satisfying 3*x^2 - cos(x) = 3*sin(x), negated. 3
2, 5, 8, 3, 7, 5, 8, 6, 0, 0, 8, 3, 4, 8, 6, 9, 4, 8, 5, 9, 8, 4, 3, 8, 2, 6, 1, 2, 2, 9, 7, 3, 3, 0, 9, 2, 9, 7, 5, 3, 9, 3, 8, 6, 9, 2, 8, 8, 7, 3, 0, 8, 4, 4, 2, 5, 8, 4, 9, 6, 2, 5, 0, 9, 9, 9, 8, 6, 0, 7, 4, 8, 4, 6, 5, 9, 9, 3, 6, 8, 5, 2, 5, 8, 6, 9, 6, 6, 4, 7, 7, 0, 7, 6, 1, 3, 9, 8, 4 (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.25837586008348694859843826122973...
greatest x: 1.012265562969209417334554419938...
MATHEMATICA
a = 3; b = -1; c = 3;
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, -.26, -.25}, WorkingPrecision -> 110]
RealDigits[r] (* A200225 *)
r = x /. FindRoot[f[x] == g[x], {x, 1.0, 1.1}, WorkingPrecision -> 110]
RealDigits[r] (* A200226 *)
PROG
(PARI) a=3; b=-1; c=3; solve(x=-1, 0, a*x^2 + b*cos(x) - c*sin(x)) \\ G. C. Greubel, Jun 30 2018
CROSSREFS
Cf. A199949.
Sequence in context: A296430 A220398 A352633 * A258749 A056886 A197839
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Nov 14 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 25 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)