A346642
a(n) = Sum_{j=1..n} Sum_{i=1..j} j^3*i^3.
Original entry on oeis.org
0, 1, 73, 1045, 7445, 35570, 130826, 399738, 1063290, 2539515, 5564515, 11362351, 21875503, 40068860, 70321460, 118921460, 194681076, 309689493, 480223005, 727832905, 1080632905, 1574809126, 2256376958, 3183210350, 4427370350, 6077760975, 8243141751
Offset: 0
For n=3,
a(3) = (1*1)^3+(2*1)^3+(2*2)^3+(3*1)^3+(3*2)^3+(3*3)^3 = 1045,
a(3) = 1^3*(1^3)+2^3*(1^3+2^3)+3^3*(1^3+2^3+3^3) = 1045.
- Roudy El Haddad, Recurrent Sums and Partition Identities, arXiv:2101.09089 [math.NT], 2021.
- Roudy El Haddad, A generalization of multiple zeta value. Part 1: Recurrent sums. Notes on Number Theory and Discrete Mathematics, 28(2), 2022, 167-199, DOI: 10.7546/nntdm.2022.28.2.167-199.
- Index entries for linear recurrences with constant coefficients, signature (9,-36,84,-126,126,-84,36,-9,1).
-
CoefficientList[Series[-(8 x^5 + 179 x^4 + 584 x^3 + 424 x^2 + 64 x + 1) x/(x - 1)^9, {x, 0, 26}], x] (* Michael De Vlieger, Feb 04 2022 *)
-
{a(n) = n*(n+1)*(n+2)*(21n^5+69n^4+45n^3-21n^2-6n+4)/672};
-
a(n) = sum(i=1, n, sum(j=1, i, i^3*j^3)); \\ Michel Marcus, Jan 27 2022
-
def A346642(n): return n*(n**2*(n*(n*(n*(n*(21*n + 132) + 294) + 252) + 21) - 56) + 8)//672 # Chai Wah Wu, Feb 17 2022
A352980
a(n) = Sum_{1 <= i < j < k <= n} (k*j*i)^3.
Original entry on oeis.org
0, 0, 0, 216, 16280, 335655, 3587535, 25421200, 135459216, 584760870, 2145870870, 6918983280, 20073184560, 53334782501, 131555523645, 304453955520, 666698215360, 1390977293580, 2780695001196, 5351537889480, 9954554649480, 17957698726275
Offset: 0
- Roudy El Haddad, Multiple Sums and Partition Identities, arXiv:2102.00821 [math.CO], 2021.
- Roudy El Haddad, A generalization of multiple zeta value. Part 2: Multiple sums. Notes on Number Theory and Discrete Mathematics, 28(2) 2022, 200-233, DOI: 10.7546/nntdm.2022.28.2.200-233. See Theorem 5.1 for m = 3 and p = 3.
- Index entries for linear recurrences with constant coefficients, signature (13,-78,286,-715,1287,-1716,1716,-1287,715,-286,78,-13,1). [Typo corrected by _Georg Fischer_, Sep 30 2022]
Cf.
A352979 (for nondistinct cubes).
-
{a(n) = n^2 * (n + 1)^2 * (n - 1) * (n - 2) * (35*n^6 + 5*n^5 - 237*n^4 - 77*n^3 + 502*n^2 + 148*n -336)/13440};
-
def A352980(n): return n**2*(n*(n*(n*(n*(n*(n*(n*(n*(n*(35*n - 30) - 347) + 180) + 1365) - 350) - 2541) + 240) + 2160) - 40) - 672)//13440 # Chai Wah Wu, May 15 2022
A351760
a(n) = Sum_{1 <= i < j <= n} (i*j)^4.
Original entry on oeis.org
0, 0, 16, 1393, 26481, 247731, 1516515, 6978790, 26131686, 83684778, 237014778, 607915231, 1436816095, 3170754405, 6600189141, 13064343516, 24750198748, 45116627556, 79482515700, 135826148445, 225852708445, 366397514791, 581244702423, 903454469346, 1378306878690, 2066986566190
Offset: 0
- Roudy El Haddad, Multiple Sums and Partition Identities, arXiv:2102.00821 [math.CO], 2021.
- Roudy El Haddad, A generalization of multiple zeta value. Part 2: Multiple sums. Notes on Number Theory and Discrete Mathematics, 28(2), 2022, 200-233, DOI: 10.7546/nntdm.2022.28.2.200-233.
- Index entries for linear recurrences with constant coefficients, signature (11,-55,165,-330,462,-462,330,-165,55,-11,1).
-
{a(n) = n*(n-1)*(n+1)*(2*n-1)*(2*n+1)*(9*n^5+20*n^4-15*n^3-50*n^2+n+30)/1800};
-
a(n) = sum(j=2, n, sum(i=1, j-1, i^4*j^4));
-
def A351760(n): return n*(n*(n*(n*(n*(n*(n*(n*(n*(9*n+20<<2)-105)-300)+88)+390)-20)-200)+1)+30)//1800 # Chai Wah Wu, Oct 03 2024
A351805
a(n) = Sum_{1 <= i < j <= n} j^5*i^5.
Original entry on oeis.org
0, 0, 32, 8051, 290675, 4353175, 38761975, 243824182, 1194358326, 4842169350, 16924669350, 52488756425, 147511725257, 381689190701, 920589376525, 2089893985900, 4500779925100, 9254143113132, 18262909865676, 34746798604575, 63973358604575, 114343801467875
Offset: 0
- Roudy El Haddad, Multiple Sums and Partition Identities, arXiv:2102.00821 [math.CO], 2021.
- Roudy El Haddad, A generalization of multiple zeta value. Part 2: Multiple sums. Notes on Number Theory and Discrete Mathematics, 28(2), 2022, 200-233, DOI: 10.7546/nntdm.2022.28.2.200-233.
- Index entries for linear recurrences with constant coefficients, signature (13,-78,286,-715,1287,-1716,1716,-1287,715,-286,78,-13,1).
Showing 1-4 of 4 results.
Comments