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

A199002
Decimal expansion of x>0 satisfying 4*x^2-4*cos(x)=1.
2
9, 2, 3, 5, 6, 7, 9, 0, 5, 1, 8, 7, 8, 9, 4, 5, 4, 1, 8, 5, 8, 5, 9, 2, 9, 7, 3, 9, 7, 8, 4, 1, 0, 1, 6, 3, 8, 9, 9, 0, 4, 8, 6, 4, 1, 1, 7, 7, 7, 2, 1, 0, 4, 7, 0, 7, 6, 1, 8, 0, 9, 1, 3, 8, 2, 3, 5, 1, 4, 1, 9, 7, 8, 7, 4, 4, 0, 1, 2, 4, 3, 6, 7, 8, 9, 1, 4, 8, 5, 0, 0, 6, 4, 5, 5, 3, 6, 8, 9
OFFSET
0,1
COMMENTS
See A198755 for a guide to related sequences. The Mathematica program includes a graph.
EXAMPLE
x=0.9235679051878945418585929739784101638990486411777...
MATHEMATICA
a = 4; b = -4; c = 1;
f[x_] := a*x^2 + b*Cos[x]; g[x_] := c
Plot[{f[x], g[x]}, {x, -2, 2}, {AxesOrigin -> {0, 0}}]
r = x /. FindRoot[f[x] == g[x], {x, .92, .93}, WorkingPrecision -> 110]
RealDigits[r] (* A199002 *)
CROSSREFS
Cf. A198755.
Sequence in context: A201559 A300015 A246499 * A160108 A011344 A257959
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Nov 01 2011
STATUS
approved