Find the number of permutations of the integers satisfying .
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Let F ( n ) be the number of permutations of the set { 1 , 2 , … , n } satisfying 1 x 1 ≤ 2 x 2 ≤ 3 x 3 ≤ … ≤ n x n ( ∗ ) .
The key obversation needed to compute F ( n ) is the following claim: “If a permutation satisfies ( ∗ ) , then either x n − 1 = n or x n = n ".
To prove the claim, assume, on the contrary, that x n − k = n for some k > 1 . Then obverse that the set { x n − k + 1 , … , x n } must be a permutation of { n − k , n − k + 1 , … , n − 1 } , otherwise, there would have to be a number smaller than n − k between them, which would violate ( ∗ ) . Now, which of the elements x n − k + 1 , … , x n is n − k ? Obviously, it has to be the last one – otherwise ( ∗ ) would be violated too. Then the inequality ( ∗ ) gets the following form: 1 x 1 ≤ 2 x 2 ≤ 3 x 3 ≤ … ≤ n ( n − k ) ( n − k ) x n − k ≤ … ≤ n ( n − k ) n x n .
And therefore we actually have the equality after the position n − k : n ( n − k ) = ( n − k ) x n − k = … = n x n
But then it means that n ( n − k ) is divisible by all the numbers n − k + 1 , n − k + 2 , … , n − 1 , which is not true. This contradiction concludes the proof of the claim.
The number of permutations satisfying ( ∗ ) and x n = n is F ( n − 1 ) ; the number of permutations satisfying ( ∗ ) and x n − 1 = n is F ( n − 2 ) .
Thus we get F ( 1 ) = 1 , F ( 2 ) = 2 , F ( n ) = F ( n − 1 ) + F ( n − 2 ) , n ≥ 3 ,
which shows that F ( n ) is the ( n + 1 ) th Fibonacci number.
Thus F ( 2 5 ) = 1 2 1 3 9 3