OFFSET
1,1
LINKS
Index entries for linear recurrences with constant coefficients, signature (9,-36,84,-126,126,-84,36,-9,1).
FORMULA
a(n) = (1/2)*n*(1 + n)*(1 + 9*n + 27*n^2 + 42*n^3 + 36*n^4 + 18*n^5 + 6*n^6).
G.f.: -x*(139*x^6+4746*x^5+29445*x^4+52300*x^3+29445*x^2+4746*x+139)/(x-1)^9.
EXAMPLE
a(1) = 139 = 2^2+...+7^2, a(2) = 9^2+...+26^2.
MATHEMATICA
LinearRecurrence[{9, -36, 84, -126, 126, -84, 36, -9, 1}, {139, 5997, 78414, 553810, 2677065, 10009839, 31098172, 84004164, 203427495}, 20] (* Harvey P. Dale, Nov 11 2024 *)
PROG
(Python)
def A158527(n): return n*(n*(n*(n*(n*(n*(n*(6*(n + 4)) + 54) + 78) + 69) + 36) + 10) + 1)>>1 # Chai Wah Wu, Sep 03 2024
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Zak Seidov, Mar 20 2009
STATUS
approved