OFFSET
1,2
COMMENTS
See A198866 for a guide to related sequences. The Mathematica program includes a graph.
EXAMPLE
negative: -1.280117027823592900045689845558554979655...
positive: 0.741456706769858920159460956349108949987...
MATHEMATICA
a = 3; b = 2; c = 3;
f[x_] := a*x^2 + b*Sin[x]; g[x_] := c
Plot[{f[x], g[x]}, {x, -2, 2}, {AxesOrigin -> {0, 0}}]
r = x /. FindRoot[f[x] == g[x], {x, -1.29, -1.28}, WorkingPrecision -> 110]
RealDigits[r] (* A199156 *)
r = x /. FindRoot[f[x] == g[x], {x, .74, .75}, WorkingPrecision -> 110]
RealDigits[r] (* A199157 *)
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Nov 03 2011
EXTENSIONS
a(93) onwards corrected by Georg Fischer, Aug 01 2021
STATUS
approved