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

A198583
Decimal expansion of x>0 satisfying 2*x^2=sin(x).
3
4, 8, 0, 9, 4, 5, 9, 5, 7, 7, 2, 8, 1, 2, 9, 6, 5, 7, 7, 6, 6, 2, 9, 7, 8, 5, 6, 5, 3, 7, 6, 5, 6, 3, 8, 3, 3, 8, 5, 4, 0, 7, 0, 8, 5, 9, 1, 3, 4, 6, 6, 3, 6, 7, 3, 2, 9, 2, 5, 6, 2, 6, 9, 9, 9, 6, 3, 9, 8, 8, 3, 9, 3, 6, 3, 9, 6, 1, 1, 1, 9, 9, 5, 1, 9, 4, 0, 8, 7, 2, 8, 1, 3, 9, 2, 8, 2, 1, 3
OFFSET
0,1
COMMENTS
See A198414 for a guide to related sequences. The Mathematica program includes a graph.
EXAMPLE
x=0.480945957728129657766297856537656383385407...
MATHEMATICA
a = 2; b = 0; c = 1;
f[x_] := a*x^2 + b*x; g[x_] := c*Sin[x]
Plot[{f[x], g[x]}, {x, -.1, 1}]
r = x /. FindRoot[f[x] == g[x], {x, .48, .49}, WorkingPrecision -> 110]
RealDigits[r] (* A198583 *)
CROSSREFS
Cf. A198414.
Sequence in context: A197284 A086468 A125507 * A244123 A280652 A104538
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Oct 27 2011
STATUS
approved