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

A199739
Decimal expansion of x>0 satisfying 2*x^2-x*cos(x)=4*sin(x).
2
1, 4, 4, 0, 9, 8, 5, 1, 6, 3, 2, 1, 0, 3, 7, 3, 7, 7, 8, 4, 5, 1, 3, 8, 0, 4, 5, 4, 2, 3, 4, 8, 2, 8, 4, 2, 7, 0, 0, 4, 4, 4, 9, 0, 2, 5, 8, 2, 4, 3, 7, 6, 1, 9, 4, 5, 8, 1, 2, 3, 9, 0, 7, 5, 8, 1, 0, 0, 9, 0, 6, 8, 5, 1, 7, 2, 3, 1, 6, 1, 3, 5, 1, 8, 1, 2, 2, 7, 6, 6, 1, 9, 1, 2, 4, 3, 4, 4, 9
OFFSET
1,2
COMMENTS
See A199597 for a guide to related sequences. The Mathematica program includes a graph.
LINKS
EXAMPLE
x=1.44098516321037377845138045423482842700444...
MATHEMATICA
a = 2; b = -1; c = 4;
f[x_] := a*x^2 + b*x*Cos[x]; g[x_] := c*Sin[x]
Plot[{f[x], g[x]}, {x, -1, 2}, {AxesOrigin -> {0, 0}}]
r = x /. FindRoot[f[x] == g[x], {x, 1.44, 1.45}, WorkingPrecision -> 110]
RealDigits[r] (* A199739 *)
CROSSREFS
Cf. A199597.
Sequence in context: A129507 A236922 A021698 * A121547 A377150 A028626
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Nov 10 2011
EXTENSIONS
Definition corrected by Matthew House, Dec 24 2016
STATUS
approved