Sum of square of first n odd numbers

Problem


Given a number n, find the sum of the square of first n odd natural numbers.

Example


Input : 3
Output : 35 
1^2 + 3^2 + 5^2 = 35

Contributed by Erkan Ercan