A201517 Decimal expansion of least x satisfying 4*x^2 - 1 = sec(x) and 0 < x < Pi.
7, 7, 4, 4, 2, 7, 2, 5, 7, 0, 7, 9, 8, 9, 3, 6, 2, 3, 2, 5, 7, 0, 2, 9, 0, 0, 9, 0, 0, 0, 6, 2, 4, 5, 6, 3, 9, 8, 5, 9, 1, 3, 6, 7, 7, 8, 3, 5, 0, 7, 9, 2, 6, 8, 7, 8, 4, 2, 5, 9, 1, 6, 0, 5, 0, 5, 9, 2, 7, 3, 0, 3, 6, 8, 2, 5, 8, 1, 2, 4, 6, 4, 8, 7, 2, 7, 2, 4, 4, 6, 5, 7, 4, 2, 9, 1, 6, 4, 1
Offset: 0
Examples
least: 0.774427257079893623257029009000... greatest: 1.4313635500690391357640449937...
Crossrefs
Cf. A201397.
Programs
-
Mathematica
a = 4; c = -1; f[x_] := a*x^2 + c; g[x_] := Sec[x] Plot[{f[x], g[x]}, {x, 0, Pi/2}, {AxesOrigin -> {0, 0}}] r = x /. FindRoot[f[x] == g[x], {x, .7, .8}, WorkingPrecision -> 110] RealDigits[r] (* A201517 *) r = x /. FindRoot[f[x] == g[x], {x, 1.4, 1.5}, WorkingPrecision -> 110] RealDigits[r] (* A201518 *)
Comments