OFFSET
1,2
COMMENTS
See A199170 for a guide to related sequences. The Mathematica program includes a graph.
EXAMPLE
negative: -1.29477176551027054190068103147021856144266...
positive: 1.120827899072464105010802655123824414841540...
MATHEMATICA
a = 2; b = 1; c = 3;
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.3, -1.2}, WorkingPrecision -> 110]
RealDigits[r] (* A199267 *)
r = x /. FindRoot[f[x] == g[x], {x, 1.12, 1.13}, WorkingPrecision -> 110]
RealDigits[r] (* A199268 *)
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Nov 04 2011
EXTENSIONS
a(93) onwards corrected by Georg Fischer, Aug 03 2021
STATUS
approved