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

A197283
Decimal expansion of least x>0 having sin(5*x) = (sin(x))^2.
1
5, 6, 9, 3, 4, 5, 9, 5, 6, 7, 0, 4, 0, 5, 4, 4, 9, 1, 2, 2, 5, 4, 7, 4, 0, 0, 3, 5, 6, 9, 6, 1, 5, 2, 8, 7, 3, 5, 1, 0, 1, 5, 8, 6, 7, 8, 9, 8, 6, 4, 7, 2, 3, 8, 0, 8, 2, 9, 2, 3, 8, 1, 8, 6, 4, 7, 2, 6, 5, 4, 0, 2, 2, 8, 9, 6, 7, 4, 2, 0, 9, 3, 8, 1, 6, 0, 3, 2, 1, 0, 6, 4, 0, 9, 3, 0, 4, 2, 8, 9, 9
OFFSET
0,1
COMMENTS
The Mathematica program includes a graph. See A197133 for a guide to least x>0 satisfying sin(b*x)=(sin(c*x))^2 for selected b and c.
EXAMPLE
0.56934595670405449122547400...
MATHEMATICA
b = 5; c = 1; f[x_] := Sin[x]
t = x /. FindRoot[f[b*x] == f[c*x]^2, {x, .5, .7}, WorkingPrecision -> 100]
RealDigits[t] (* A197283 *)
Plot[{f[b*x], f[c*x]^2}, {x, 0, Pi}]
CROSSREFS
Cf. A197133.
Sequence in context: A277522 A019598 A340565 * A244843 A118261 A246749
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Oct 13 2011
EXTENSIONS
Offset corrected by Georg Fischer, Aug 10 2021
STATUS
approved