This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A198733 #9 Dec 02 2016 10:37:58 %S A198733 4,6,9,0,3,6,1,8,0,3,9,5,3,9,4,1,7,1,9,1,6,9,5,6,7,7,6,7,6,7,7,3,0,7, %T A198733 4,6,0,8,9,1,1,5,1,8,4,1,9,4,7,9,0,9,4,7,4,6,2,8,4,8,4,5,2,7,3,5,0,9, %U A198733 7,4,8,1,2,8,1,4,2,9,3,3,6,6,4,3,5,8,7,8,4,2,0,4,9,5,7,9,1,4,6,3,2,7,8,7,4,7 %N A198733 Decimal expansion of the absolute minimum of sin(x)+sin(2x)+sin(3x)+sin(4x)+sin(5x)+sin(6x). %C A198733 See A198677 for a guide to related sequences. %e A198733 x=5.924356380456046882352862563376763567376562... %e A198733 min=-4.690361803953941719169567767677307460891... %t A198733 n = 6; f[t_] = Sin[t]; s[t_] := Sum[f[k*t], {k, 1, n}]; %t A198733 x = N[Minimize[s[t], t], 110]; u = Part[x, 1] %t A198733 v = t /. Part[x, 2] %t A198733 RealDigits[u] (* A198733 *) %t A198733 RealDigits[v] (* A198734 *) %t A198733 Plot[s[t], {t, -3 Pi, 3 Pi}] %t A198733 RealDigits[FindMinimum[Plus@@Table[Sin[n*x],{n,6}],{x,.1}, WorkingPrecision -> 100][[1]]][[1]] (* _Harvey P. Dale_, Dec 08 2015 *) %Y A198733 Cf. A198677. %K A198733 nonn,cons %O A198733 1,1 %A A198733 _Clark Kimberling_, Oct 29 2011