login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A197846
Decimal expansion of greatest x having x^2+2x=3*cos(x).
3
7, 7, 3, 6, 9, 6, 1, 8, 9, 2, 4, 3, 8, 0, 9, 4, 2, 1, 7, 1, 4, 7, 3, 9, 0, 5, 3, 5, 3, 0, 4, 5, 3, 3, 3, 6, 8, 0, 5, 7, 2, 1, 2, 5, 6, 8, 2, 4, 5, 8, 2, 4, 0, 7, 9, 1, 1, 0, 4, 5, 4, 2, 4, 9, 8, 1, 2, 9, 4, 1, 0, 7, 6, 2, 5, 1, 4, 0, 0, 5, 2, 7, 0, 1, 6, 9, 0, 0, 6, 3, 8, 8, 0, 4, 0, 8, 2, 8, 2
OFFSET
0,1
COMMENTS
See A197737 for a guide to related sequences. The Mathematica program includes a graph.
EXAMPLE
least x: -1.72807808625314217139724543242476826...
greatest x: 0.773696189243809421714739053530453...
MATHEMATICA
a = 1; b = 2; c = 3;
f[x_] := a*x^2 + b*x; g[x_] := c*Cos[x]
Plot[{f[x], g[x]}, {x, -2, 1}]
r1 = x /. FindRoot[f[x] == g[x], {x, -1.8, -1.7}, WorkingPrecision -> 110]
RealDigits[r1] (* A197845 *)
r2 = x /. FindRoot[f[x] == g[x], {x, .77, .78}, WorkingPrecision -> 110]
RealDigits[r2] (* A197846 *)
CROSSREFS
Cf. A197737.
Sequence in context: A204067 A291364 A244256 * A153102 A155959 A063736
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Oct 20 2011
STATUS
approved