cp's OEIS Frontend

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.

A026309 a(n) = n-th nonnegative integer k satisfying sin(k) < sin(k+1).

This page as a plain text file.
%I A026309 #12 Dec 11 2024 09:26:57
%S A026309 0,1,5,6,7,11,12,13,17,18,19,24,25,26,30,31,32,36,37,38,42,43,44,45,
%T A026309 49,50,51,55,56,57,61,62,63,68,69,70,74,75,76,80,81,82,86,87,88,89,93,
%U A026309 94,95,99,100,101,105,106,107,112,113,114,118
%N A026309 a(n) = n-th nonnegative integer k satisfying sin(k) < sin(k+1).
%C A026309 The sequences A026309, A246297, A246298, A246299 partition the nonnegative integers.
%H A026309 Clark Kimberling, <a href="/A026309/b026309.txt">Table of n, a(n) for n = 1..4000</a>
%F A026309 a(n) ~ 2n by the Equidistribution Theorem. - _Charles R Greathouse IV_, Dec 11 2024
%t A026309 z = 500; f[x_] := f[x] = Sin[x]; t = Range[0, z];
%t A026309 Select[t, f[#] < f[# + 1] &]  (* A026309 *)
%t A026309 Select[t, f[#] > f[# + 1] < f[# + 2] &]  (* A246297 *)
%t A026309 Select[t, f[#] > f[# + 1] > f[# + 2] < f[# + 3] &]  (* A246298 *)
%t A026309 Select[t, f[#] > f[# + 1] > f[# + 2] > f[# + 3] < f[# + 4] &] (* A246299 *)
%Y A026309 Cf. A246297, A246298, A246299, A246293 (complement of A026309).
%K A026309 nonn,easy
%O A026309 1,3
%A A026309 _Clark Kimberling_
%E A026309 Comment, Mathematica, and Crossrefs by _Clark Kimberling_, Aug 21 2014