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

A342171
Nonnegative integers k such that k < sec(k)*csc(k).
1
1, 22, 44, 355, 710, 1065, 1420, 1775, 2130, 2485, 2840, 3195, 260515, 312689, 1146408, 5419351, 10838702, 37362253, 122925461, 534483448, 3083975227, 902209779836, 74357078147863, 214112296674652, 642336890023956, 18190586279576483, 248319196091979065
OFFSET
1,2
COMMENTS
Conjecture: 2*k/Pi is either a little more than an even integer or a little less than an odd integer.
The conjecture is true. As k > 0 increases, satisfaction of the inequality k < sec(k)*csc(k) requires that sec(k)*csc(k) be a large positive number. Since sec(k)*csc(k) = 1/(sin(k)*cos(k)) = 2/sin(2*k), this requires that sin(2*k) be a small positive number, which occurs only when 2*k/Pi is a little more than an even integer or a little less than an odd integer. - Jon E. Schoenfield, Mar 06 2021
LINKS
MATHEMATICA
Select[Range[10^6], # < Sec[#] Csc[#] &] (* Michael De Vlieger, Mar 14 2021 *)
PROG
(Python)
import math
i = 1;
while True:
if(i < 1/(math.cos(i)*math.sin(i))):
print(str(i) + ", ")
i += 1
(PARI) isok(k) = k < 1/(sin(k)*cos(k)); \\ Michel Marcus, Mar 05 2021
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
a(22)-a(27) from Jon E. Schoenfield, Mar 06 2021
STATUS
approved