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”).

A198122
Decimal expansion of least x having 2*x^2-4x=-cos(x).
3
2, 7, 9, 3, 2, 0, 7, 7, 9, 7, 3, 8, 1, 6, 5, 0, 6, 1, 2, 8, 0, 5, 9, 3, 3, 9, 6, 6, 5, 5, 3, 9, 5, 5, 4, 5, 6, 2, 2, 7, 5, 8, 0, 0, 4, 5, 9, 7, 1, 7, 5, 0, 7, 1, 9, 7, 1, 5, 7, 2, 0, 3, 7, 7, 8, 7, 0, 6, 0, 4, 7, 5, 9, 8, 5, 5, 1, 2, 1, 8, 5, 0, 0, 8, 7, 8, 8, 7, 2, 7, 1, 1, 6, 6, 8, 8, 2, 8, 9, 7, 5
OFFSET
0,1
COMMENTS
See A197737 for a guide to related sequences. The Mathematica program includes a graph.
EXAMPLE
least x: 0.27932077973816506128059339665539554...
greatest x: 2.123633334519982394198770246411061...
MATHEMATICA
a = 2; b = -4; c = -1;
f[x_] := a*x^2 + b*x; g[x_] := c*Cos[x]
Plot[{f[x], g[x]}, {x, -1, 3}]
r1 = x /. FindRoot[f[x] == g[x], {x, .27, .28}, WorkingPrecision -> 110]
RealDigits[r1](* A198122 *)
r2 = x /. FindRoot[f[x] == g[x], {x, 2.1, 2.2}, WorkingPrecision -> 110]
RealDigits[r2](* A198123 *)
CROSSREFS
Cf. A197737.
Sequence in context: A011355 A240961 A303128 * A021362 A371803 A246672
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Oct 21 2011
STATUS
approved