OFFSET
1,1
COMMENTS
What is the density of the sequence? I am convinced that this sequence has the same density as A026313.
LINKS
Chris R. Rehmann, Table of n, a(n) for n = 1..10000
EXAMPLE
|cos(5)*cos(7)| < (cos(6))^2, therefore 5 is in the sequence.
MATHEMATICA
Select[Range[120], Abs[Cos[ # ]*Cos[ # + 2]] < Cos[ # + 1]^2 &]
PROG
(MATLAB) kmax = 16825; k = 0:kmax; a = k(abs(cos(k).*cos(k+2))<cos(k+1).^2); % Chris R. Rehmann, Feb 21 2026
CROSSREFS
KEYWORD
nonn
AUTHOR
Stefan Steinerberger, Apr 12 2006
EXTENSIONS
Offset corrected by Sean A. Irvine, Sep 25 2019
STATUS
approved
