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!)
A200103 Decimal expansion of least x satisfying x^2 - 4*cos(x) = 3*sin(x), negated. 3

%I #8 Jun 25 2018 22:53:41

%S 7,9,9,2,0,0,8,1,6,8,9,5,0,9,7,0,0,5,9,4,4,4,6,0,0,6,9,2,3,2,1,1,0,1,

%T 0,4,1,2,5,1,2,1,2,6,7,1,1,1,6,1,4,3,6,3,7,8,0,2,0,8,4,8,6,9,4,0,5,8,

%U 0,2,7,0,8,4,8,0,7,3,4,1,6,4,1,1,8,9,1,8,7,8,2,4,3,0,4,5,4,2,1

%N Decimal expansion of least x satisfying x^2 - 4*cos(x) = 3*sin(x), negated.

%C See A199949 for a guide to related sequences. The Mathematica program includes a graph.

%H G. C. Greubel, <a href="/A200103/b200103.txt">Table of n, a(n) for n = 0..10000</a>

%e least x: -0.79920081689509700594446006923211010...

%e greatest x: 1.643556567520171656906524761634888...

%t a = 1; b = -4; c = 3;

%t f[x_] := a*x^2 + b*Cos[x]; g[x_] := c*Sin[x]

%t Plot[{f[x], g[x]}, {x, -3, 3}, {AxesOrigin -> {0, 0}}]

%t r = x /. FindRoot[f[x] == g[x], {x, -.8, -.7}, WorkingPrecision -> 110]

%t RealDigits[r] (* A200103 *)

%t r = x /. FindRoot[f[x] == g[x], {x, 1.64, 1.65}, WorkingPrecision -> 110]

%t RealDigits[r] (* A200104 *)

%o (PARI) a=1; b=-4; c=3; solve(x=-1, 0, a*x^2 + b*cos(x) - c*sin(x)) \\ _G. C. Greubel_, Jun 25 2018

%Y Cf. A199949.

%K nonn,cons

%O 0,1

%A _Clark Kimberling_, Nov 13 2011

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 18 15:00 EDT 2024. Contains 371780 sequences. (Running on oeis4.)