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

A201325
Decimal expansion of x satisfying 7*x^2 - 1 = cot(x) and 0 < x < Pi.
2
5, 9, 4, 9, 4, 0, 8, 7, 6, 1, 7, 0, 1, 7, 0, 2, 0, 4, 0, 7, 2, 7, 0, 5, 0, 5, 7, 5, 1, 1, 4, 7, 1, 1, 0, 0, 9, 7, 7, 9, 5, 0, 4, 9, 7, 0, 0, 3, 7, 7, 7, 7, 0, 8, 7, 6, 6, 1, 6, 3, 2, 4, 5, 3, 9, 0, 1, 0, 3, 4, 2, 7, 4, 0, 2, 6, 6, 9, 4, 4, 1, 9, 1, 5, 1, 3, 9, 4, 7, 6, 1, 3, 1, 7, 9, 7, 6, 0, 2
OFFSET
0,1
COMMENTS
See A201280 for a guide to related sequences. The Mathematica program includes a graph.
EXAMPLE
x=0.5949408761701702040727050575114711009779...
MATHEMATICA
a = 7; c = -1;
f[x_] := a*x^2 + c; g[x_] := Cot[x]
Plot[{f[x], g[x]}, {x, 0, Pi/2}, {AxesOrigin -> {0, 0}}]
r = x /. FindRoot[f[x] == g[x], {x, .5, .6}, WorkingPrecision -> 110]
RealDigits[r] (* A201325 *)
CROSSREFS
Cf. A201280.
Sequence in context: A198217 A021631 A376009 * A372285 A359485 A135169
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Nov 30 2011
STATUS
approved