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

A201421
Decimal expansion of greatest x satisfying 9*x^2 = sec(x) and 0 < x < Pi.
3
1, 5, 2, 2, 8, 6, 7, 1, 7, 6, 6, 7, 7, 9, 3, 0, 0, 5, 7, 3, 8, 6, 9, 0, 7, 4, 7, 3, 3, 4, 5, 6, 2, 6, 0, 8, 2, 0, 5, 8, 9, 8, 9, 5, 1, 0, 6, 3, 5, 7, 4, 9, 4, 3, 0, 9, 9, 6, 1, 5, 5, 5, 4, 8, 9, 2, 2, 9, 8, 2, 8, 2, 9, 3, 9, 5, 7, 9, 4, 8, 6, 7, 6, 8, 2, 6, 7, 3, 7, 9, 2, 5, 3, 2, 6, 0, 1, 7, 9, 9
OFFSET
1,2
COMMENTS
See A201397 for a guide to related sequences. The Mathematica program includes a graph.
EXAMPLE
least: 0.3435193844487517285157937916054768...
greatest: 1.52286717667793005738690747334562...
MATHEMATICA
a = 9; c = 0;
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, .3, .4}, WorkingPrecision -> 110]
RealDigits[r] (* A201420 *)
r = x /. FindRoot[f[x] == g[x], {x, 1.5, 1.6}, WorkingPrecision -> 110]
RealDigits[r] (* A201421 *)
CROSSREFS
Cf. A201397.
Sequence in context: A153842 A125136 A021989 * A200645 A011411 A201328
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Dec 02 2011
STATUS
approved