[go: up one dir, main page]

login
A079332
Values of n at which successive maxima of tan(n)/n occur.
3
1, 122925461, 534483448, 3083975227, 214112296674652
OFFSET
1,2
COMMENTS
Contributed by D. W. Cantrell.
Corresponding maxima are 1.55741, 2.65934, 3.58205, 4.3311, 18.0078, 18.0566, 556.306, ....
The next term, a(6), is too large to be displayed above, it has 117 digits. See the b-file for further terms. - M. F. Hasler, Sep 10 2020
More terms could be added to the b-file. - N. J. A. Sloane, Sep 13 2020
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..7
Eric Weisstein's World of Mathematics, Tanc Function
PROG
(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
CROSSREFS
Cf. A079331.
Subsequence of A249836 = {n | tan(n) > n}. - M. F. Hasler, Sep 10 2020
Sequence in context: A175321 A215264 A307115 * A172749 A172781 A172845
KEYWORD
nonn,more
AUTHOR
Eric W. Weisstein, Jan 03 2003
STATUS
approved