OFFSET
1,1
COMMENTS
See A198677 for a guide to related sequences.
EXAMPLE
x=5.924356380456046882352862563376763567376562...
min=-4.690361803953941719169567767677307460891...
MATHEMATICA
n = 6; f[t_] = Sin[t]; s[t_] := Sum[f[k*t], {k, 1, n}];
x = N[Minimize[s[t], t], 110]; u = Part[x, 1]
v = t /. Part[x, 2]
RealDigits[u] (* A198733 *)
RealDigits[v] (* A198734 *)
Plot[s[t], {t, -3 Pi, 3 Pi}]
RealDigits[FindMinimum[Plus@@Table[Sin[n*x], {n, 6}], {x, .1}, WorkingPrecision -> 100][[1]]][[1]] (* Harvey P. Dale, Dec 08 2015 *)
PROG
(PARI) my(t=solve(x=18, 19, cos(x)+cos(2*x)*2+cos(3*x)*3+cos(4*x)*4+cos(5*x)*5+cos(6*x)*6)); sin(t)+sin(2*t)+sin(3*t)+sin(4*t)+sin(5*t)+sin(6*t) \\ Charles R Greathouse IV, May 15 2026
CROSSREFS
KEYWORD
AUTHOR
Clark Kimberling, Oct 29 2011
STATUS
approved
