login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A303383 Total volume of all cubes with side length q such that n = p + q and p <= q. 1
0, 1, 8, 35, 91, 216, 405, 748, 1196, 1925, 2800, 4131, 5643, 7840, 10241, 13616, 17200, 22113, 27216, 34075, 41075, 50336, 59653, 71820, 83916, 99541, 114920, 134603, 153811, 178200, 201825, 231616, 260288, 296225, 330616, 373491, 414315, 464968, 512981 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
FORMULA
a(n) = Sum_{i=1..floor(n/2)} (n-i)^3.
From Bruno Berselli, Apr 23 2018: (Start)
G.f.: x*(1 + x + x^2)*(1 + 6*x + 16*x^2 + 6*x^3 + x^4)/((1 - x)^5*(1 + x)^4).
a(n) = (30*(n - 2)*(n + 1)*(n^2 - n + 2) + (2*n - 1)*(2*n^2 - 2*n - 1)*(-1)^n + 119)/128. Therefore:
a(n) = n^2*(3*n - 2)*(5*n - 6)/64 for n even;
a(n) = (n - 1)^2*(3*n - 1)*(5*n + 1)/64 for n odd. (End)
a(n) = a(n-1)+4*a(n-2)-4*a(n-3)-6*a(n-4)+6*a(n-5)+4*a(n-6)-4*a(n-7)-a(n-8)+a(n-9). - Wesley Ivan Hurt, Apr 23 2021
MATHEMATICA
Table[Sum[(n - i)^3, {i, Floor[n/2]}], {n, 50}]
PROG
(Magma) [0] cat [&+[(n-k)^3: k in [1..n div 2]]: n in [2..80]]; // Vincenzo Librandi, Apr 23 2018
CROSSREFS
Cf. A105636.
Subsequence of A217843.
After 8, all terms belong to A265377.
Sequence in context: A257454 A305672 A100907 * A265840 A212903 A168566
KEYWORD
nonn,easy
AUTHOR
Wesley Ivan Hurt, Apr 22 2018
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 16 07:08 EDT 2024. Contains 371698 sequences. (Running on oeis4.)