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

%I #11 Nov 23 2017 12:39:59

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

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

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

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

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

%H Iain Fox, <a href="/A199613/b199613.txt">Table of n, a(n) for n = 1..20000</a>

%e least: -1.077309917524072030339979615126813664791...

%e greatest: 3.553241680682892523957265556234494902067...

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

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

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

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

%t RealDigits[r] (* A199613, least of 4 roots *)

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

%t RealDigits[r] (* A199614, greatest of 4 roots *)

%o (PARI) solve(x=-2, -1, x^2+4*x*cos(x)-sin(x)) \\ _Iain Fox_, Nov 22 2017

%Y Cf. A199597.

%K nonn,cons

%O 1,3

%A _Clark Kimberling_, Nov 08 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 25 06:42 EDT 2024. Contains 371964 sequences. (Running on oeis4.)