Find the sum of the first N Centered Octagonal Number
Given a number N, the task is to find the sum of the first N Centered Octagonal Numbers. The first few Centered Octagonal numbers are 1, 9, 25, 49, 81, 121, 169, 225, 289, 361 ... Examples: Input: N = 3 Output: 35 Explanation: 1, 9 and 25 are the first three Centered Octagonal numbers. Input: N = 5