OFFSET
1,1
EXAMPLE
x=5.11418218785581587491977554892680077350563...
MATHEMATICA
Plot[{1/x, 2/x, 3/x, 4/x, Cos[x]}, {x, 0, 2 Pi}]
t = x /. FindRoot[1/x == Cos[x], {x, 4, 7}, WorkingPrecision -> 100]
RealDigits[t] (* A133868 *)
t = x /. FindRoot[2/x == Cos[x], {x, 4, 7}, WorkingPrecision -> 100]
RealDigits[t] (* A196612 *)
t = x /. FindRoot[3/x == Cos[x], {x, 4, 7}, WorkingPrecision -> 100]
RealDigits[t] (* A196613 *)
t = x /. FindRoot[4/x == Cos[x], {x, 4, 7}, WorkingPrecision -> 100]
RealDigits[t] (* A196614 *)
t = x /. FindRoot[5/x == Cos[x], {x, 4, 7}, WorkingPrecision -> 100]
RealDigits[t] (* A196615 *)
t = x /. FindRoot[6/x == Cos[x], {x, 4, 7}, WorkingPrecision -> 100]
RealDigits[t] (* A196616 *)
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Oct 04 2011
STATUS
approved