OFFSET
1,2
COMMENTS
It is stated in the Comments in A000503 that in Floor(tan(n)) "Every integer appears infinitely often. - Charles R Greathouse IV, Aug 06 2012".
It is conjectured that applying the function floor(tan) k times, with k sufficiently large, on the finite sequence floor(tan(n)), n=0...N, the result is a sequence (cf. A258021) composed only of 0’s and 1’s for all values of N.
The original definition was: "Numbers n with property that floor(tan(n)) reduces to 1 (instead of 0) when the function is applied repeatedly to n with deep enough nesting level." If the conjecture above is true, then the new, in theory more inclusive definition produces exactly the same sequence. It has been checked that for at least up to A249836(13) = 1108341089274117551 there are no other strictly positive fixed points beside 1. - Antti Karttunen, May 26 2015
According to Jan Kristian Haugland (cf. link): It is an open problem whether (tan n) > n for infinitely many n, although it has been proved that |tan n| > n for infinitely many n. - Daniel Forgues, May 27 2015
LINKS
Antti Karttunen, Table of n, a(n) for n = 1..10000
Jan Kristian Haugland, Re: analysis with tan n > n
Robert Israel, Re: tan n > n
EXAMPLE
For n=0: 0. (0: 0 iteration)
For n=1: 1. (1: 0 iteration) (in this sequence)
For n=2: 2, -3, 0. (0: 2 iterations)
For n=3: 3, -1, -2, 2, -3, 0. (0: 5 iterations)
For n=4: 4, 1. (1: 1 iteration) (in this sequence)
For n=105: 105, 4, 1. (1: 2 iterations) (in this sequence)
For n=3561: 3561, -212, -18, 1. (1: 3 iterations) (in this sequence)
J. K. Haugland found n=37362253 s.t. tan(n) > n. (Cf. link.)
For n=37362253: 37362253, 37754853, -1, -2, 2, -3, 0. (0: 6 iterations)
Bob Delaney found n=3083975227 s.t. tan(n) > n. (Cf. Robert Israel link.)
For n=3083975227: 3083975227, 13356993783, -1, -2, 2, -3, 0.
For n s.t. tan(n) > n, see A249836. - Daniel Forgues, May 27 2015
MATHEMATICA
x = Table[Floor[Tan[n]], {n, 0, 10^4}];
y = NestWhile[Floor[Tan[#]] &, x, UnsameQ, 2];
Flatten[Position[y, 1]] - 1
PROG
(Scheme, with Antti Karttunen's IntSeq-library)
;; Antti Karttunen, May 24 2015
CROSSREFS
KEYWORD
nonn
AUTHOR
V.J. Pohjola, May 16 2015
EXTENSIONS
Based on rewording by Daniel Forgues changed the formal definition to include also any hypothetical fixed points larger than one - Antti Karttunen, May 26 2015
STATUS
approved