A258201 a(n) = smallest number encountered when iterating the map x -> floor(tan(x)) starting from the initial value x = n.
0, 1, -3, -3, 1, -4, -3, 0, -7, -3, 0, -226, -3, 0, 0, -3, 0, -3, -3, 0, -3, -3, 0, 1, -3, -3, 1, -4, -3, 0, -7, -3, 0, -76, -3, 0, 0, -3, 0, -3, -3, 0, -3, -3, 0, 1, -3, -3, 1, -4, -3, 0, -7, -3, 0, -46, -3, 0, -7, -3, 0, -3, -3, 0, -3, -3, 0, 1, -3, -3, 1, -4, -3, 0, -6, -3, 0, -33, -3, 0
Offset: 0
Keywords
Links
- Antti Karttunen, Table of n, a(n) for n = 0..10000
Formula
If n is equal to floor(tan(n)) then a(n) = n, otherwise (for any other n whether positive or negative) a(n) = min(n, a(floor(tan(n)))). [Recurrence defined in whole Z.]
Comments