login
A196763
Decimal expansion of the least x>0 satisfying 5=x*sin(x).
4
7, 0, 6, 8, 8, 9, 1, 4, 0, 3, 3, 9, 5, 0, 6, 6, 8, 0, 0, 6, 8, 7, 5, 9, 9, 5, 6, 1, 9, 1, 6, 7, 6, 2, 0, 4, 2, 7, 1, 5, 0, 4, 5, 1, 0, 1, 7, 0, 0, 5, 9, 5, 1, 7, 8, 7, 8, 0, 8, 5, 5, 2, 2, 9, 2, 2, 7, 5, 8, 0, 2, 5, 6, 0, 3, 5, 9, 4, 4, 1, 4, 9, 2, 2, 0, 8, 7, 2, 9, 7, 6, 5, 7, 9, 7, 9, 2, 8, 1, 6
OFFSET
1,1
EXAMPLE
x=7.068891403395066800687599561916762042715045101700...
MATHEMATICA
Plot[{1/x, 2/x, 3/x, 4/x, Sin[x]}, {x, 0, 4 Pi}]
t = x /. FindRoot[1/x == Sin[x], {x, 1, 1.2}, WorkingPrecision -> 100]
RealDigits[t] (* A133866 *)
t = x /. FindRoot[2/x == Sin[x], {x, 6, 7}, WorkingPrecision -> 100]
RealDigits[t] (* A196760 *)
t = x /. FindRoot[3/x == Sin[x], {x, 6, 7}, WorkingPrecision -> 100]
RealDigits[t] (* A196761 *)
t = x /. FindRoot[4/x == Sin[x], {x, 6, 7}, WorkingPrecision -> 100]
RealDigits[t] (* A196762 *)
t = x /. FindRoot[5/x == Sin[x], {x, 6, 7}, WorkingPrecision -> 100]
RealDigits[t] (* A196763 *)
t = x /. FindRoot[6/x == Sin[x], {x, 6, 7}, WorkingPrecision -> 100]
RealDigits[t] (* A196764 *)
CROSSREFS
Cf. A196765.
Sequence in context: A094241 A021938 A076421 * A321106 A225457 A188928
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Oct 06 2011
STATUS
approved