A079332 Values of n at which successive maxima of tan(n)/n occur.
1, 122925461, 534483448, 3083975227, 214112296674652
Offset: 1
Links
- Charles R Greathouse IV, Table of n, a(n) for n = 1..7
- Eric Weisstein's World of Mathematics, Tanc Function
Crossrefs
Cf. A079331.
Subsequence of A249836 = {n | tan(n) > n}. - M. F. Hasler, Sep 10 2020
Programs
-
PARI
r=0; for(n=1,1e9, t=tan(n)/n; if(t>r, r=t; print1(n", "))) \\ Charles R Greathouse IV, Jul 20 2016
Comments