login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A308234
Take apart the sides of each of the integer-sided scalene triangles with perimeter n (at their vertices) and rearrange them orthogonally in 3-space so that their endpoints coincide at a single point. a(n) is the total volume of all rectangular prisms enclosed in this way.
0
0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 40, 60, 132, 90, 309, 266, 584, 570, 1013, 1018, 1939, 1678, 2866, 3062, 4603, 4382, 6991, 6818, 10038, 10068, 13988, 14140, 20137, 19308, 26397, 27260, 35652, 35196, 47075, 46836, 60591, 61004, 76824, 77616, 98981, 97350
OFFSET
1,9
FORMULA
a(n) = Sum_{k=1..floor((n-1)/3)} Sum_{i=k+1..floor((n-k-1)/2)} sign(floor((i+k)/(n-i-k+1))) * i * k * (n-i-k).
MATHEMATICA
Table[Sum[Sum[i*k*(n - i - k)*Sign[Floor[(i + k)/(n - i - k + 1)]], {i, k + 1, Floor[(n - k - 1)/2]}], {k, Floor[(n - 1)/3]}], {n, 100}]
CROSSREFS
Cf. A308233.
Sequence in context: A075406 A075404 A356304 * A362795 A242837 A353324
KEYWORD
nonn
AUTHOR
Wesley Ivan Hurt, May 16 2019
STATUS
approved