Turns out I was able to enter the first few results here and come up with what the pattern was.
http://www.research.att.com/~njas/sequences/
Thanks for trying though guys.
I have the following recurrence that I am trying to come up with atleast a simplified version if not a closed form.
T(n) = T(n-1) + \sum_{i=1}^{(n-1)/2} [(n-(i+1)) * (i-1) * 2 + 2]
in addition if n is even I must add the following to T(n)
((n/2) - 1)^2If any of you can help that would be...