The odd integers are arranged into sets, each succeeding set continuing from the previous, and containing one more number as follows: {1},{3,5},{7,9,11},{13,15,17,19},... what is the sum of the numbers in the 22nd set?
Sum of 1st set: 1
Sum of 2nd set: 8
Sum of 3rd set: 27
Sum of 4th set: 64
With set number being n, and based on above observation, sequence is: n3
Based on the 4 sets, we get:
Therefore,