Is it possible to arrange the 3972 numbers into one line such that there are exactly numbers between any two 's?
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.
Consider the current order of 1,1,2,2,3,3,4,4... Etc. As every n is next to its pair, the total distances between them is 0. Define a move as a swap of 2 numbers next to each other. Eg 1,1,2,3,2,3,4,4..... The total distance between pairs is now 2. ( note that the total distance can only move up and down by 2). The numbers can be positioned in any order using a series of moves so the total distance will always be even.
The desired order requires the total distance to be the 1986th triangle number. As this is odd, this makes the desired order impossible.