Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
A199288
Decimal expansion of x>0 satisfying 3*x^2+2*x*cos(x)=2.
3
5, 8, 4, 5, 3, 2, 4, 9, 0, 7, 9, 0, 4, 0, 6, 3, 0, 4, 5, 3, 3, 6, 9, 6, 6, 4, 0, 0, 1, 1, 1, 7, 9, 3, 3, 7, 1, 1, 3, 1, 3, 9, 0, 9, 0, 0, 5, 1, 8, 3, 4, 6, 3, 7, 3, 0, 5, 7, 6, 4, 4, 5, 2, 8, 6, 3, 8, 7, 6, 3, 9, 6, 3, 3, 7, 4, 7, 9, 4, 2, 2, 9, 4, 7, 5, 9, 2, 2, 1, 3, 1, 0, 8, 2, 4, 3, 4, 7, 7
OFFSET
0,1
COMMENTS
See A199170 for a guide to related sequences. The Mathematica program includes a graph.
EXAMPLE
negative: -1.01209273887228943407465426872436881...
positive: 0.584532490790406304533696640011179337...
MATHEMATICA
a = 3; b = 2; c = 2;
f[x_] := a*x^2 + b*x*Cos[x]; g[x_] := c
Plot[{f[x], g[x]}, {x, -2, 2}, {AxesOrigin -> {0, 0}}]
r = x /. FindRoot[f[x] == g[x], {x, -1.1, -1}, WorkingPrecision -> 110]
RealDigits[r] (* A199287 *)
r = x /. FindRoot[f[x] == g[x], {x, .58, .59}, WorkingPrecision -> 110]
RealDigits[r] (* A199288 *)
CROSSREFS
Cf. A199170.
Sequence in context: A019649 A224833 A246926 * A099878 A167901 A195424
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Nov 05 2011
STATUS
approved