login
A199454
Decimal expansion of x>0 satisfying x^2-x*sin(x)=cos(x).
2
1, 2, 2, 0, 4, 6, 8, 4, 6, 5, 9, 1, 1, 2, 9, 9, 5, 8, 8, 6, 8, 2, 8, 1, 4, 3, 1, 2, 2, 1, 1, 2, 4, 4, 8, 2, 9, 8, 7, 5, 1, 6, 2, 5, 1, 9, 6, 7, 0, 1, 4, 4, 6, 3, 5, 8, 3, 2, 4, 1, 6, 1, 0, 3, 8, 3, 6, 4, 4, 7, 5, 8, 8, 3, 2, 1, 1, 9, 0, 4, 7, 3, 2, 1, 1, 2, 0, 0, 1, 3, 7, 5, 9, 7, 2, 5, 5, 0, 1
OFFSET
1,2
COMMENTS
See A199429 for a guide to related sequences. The Mathematica program includes a graph.
EXAMPLE
x=1.2204684659112995886828143122112448298751...
MATHEMATICA
a = 1; b = -1; c = 1;
f[x_] := a*x^2 + b*x*Sin[x]; g[x_] := c*Cos[x]
Plot[{f[x], g[x]}, {x, -Pi, Pi}, {AxesOrigin -> {0, 0}}]
r = x /. FindRoot[f[x] == g[x], {x, 1.22, 1.23}, WorkingPrecision -> 110]
RealDigits[r] (* A199454 *)
CROSSREFS
Cf. A199429.
Sequence in context: A320119 A100240 A072690 * A244130 A180813 A194656
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Nov 06 2011
STATUS
approved