|
|
A158527
|
|
Sum of squares of consecutive positive noncubes.
|
|
2
|
|
|
139, 5997, 78414, 553810, 2677065, 10009839, 31098172, 84004164, 203427495, 451263505, 931565514, 1811000022, 3346004389, 5917977555, 10077955320, 16602342664, 26561396547, 41402273589, 63048577990, 94018466010
(list;
graph;
refs;
listen;
history;
text;
internal format)
|
|
|
OFFSET
|
1,1
|
|
LINKS
|
|
|
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.
|
|
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
|
Cf. A048396 (sum of consecutive noncubes).
|
|
KEYWORD
|
nonn,easy,changed
|
|
AUTHOR
|
|
|
STATUS
|
approved
|
|
|
|