A213554
Principal diagonal of the convolution array A213553.
Original entry on oeis.org
1, 43, 334, 1406, 4271, 10577, 22764, 44220, 79437, 134167, 215578, 332410, 495131, 716093, 1009688, 1392504, 1883481, 2504067, 3278374, 4233334, 5398855, 6807977, 8497028, 10505780, 12877605, 15659631, 18902898, 22662514
Offset: 1
-
List([1..30], n-> n*(39*n^4 +15*n^3 -25*n^2 +1)/30); # G. C. Greubel, Jul 31 2019
-
[n*(39*n^4 +15*n^3 -25*n^2 +1)/30: n in [1..30]]; // G. C. Greubel, Jul 31 2019
-
(* First program *)
b[n_]:= n; c[n_]:= n^3;
T[n_, k_]:= Sum[b[k-i] c[n+i], {i, 0, k-1}]
TableForm[Table[T[n, k], {n, 1, 10}, {k, 1, 10}]]
Flatten[Table[T[n-k+1, k], {n, 12}, {k, n, 1, -1}]]
r[n_]:= Table[T[n, k], {k, 1, 60}] (* A213553 *)
d = Table[T[n, n], {n, 1, 40}] (* A213554 *)
s[n_]:= Sum[T[i, n+1-i], {i, 1, n}]
s1 = Table[s[n], {n, 1, 50}] (* A101089 *)
(* Second program *)
Table[(39n^5+15n^4-25n^3+n)/30,{n,30}] (* or *) LinearRecurrence[ {6,-15,20,-15,6,-1},{1,43,334,1406,4271,10577},30] (* Harvey P. Dale, Jan 15 2013 *)
-
vector(30, n, n*(39*n^4 +15*n^3 -25*n^2 +1)/30) \\ G. C. Greubel, Jul 31 2019
-
[n*(39*n^4 +15*n^3 -25*n^2 +1)/30 for n in (1..30)] # G. C. Greubel, Jul 31 2019
A213500
Rectangular array T(n,k): (row n) = b**c, where b(h) = h, c(h) = h + n - 1, n >= 1, h >= 1, and ** = convolution.
Original entry on oeis.org
1, 4, 2, 10, 7, 3, 20, 16, 10, 4, 35, 30, 22, 13, 5, 56, 50, 40, 28, 16, 6, 84, 77, 65, 50, 34, 19, 7, 120, 112, 98, 80, 60, 40, 22, 8, 165, 156, 140, 119, 95, 70, 46, 25, 9, 220, 210, 192, 168, 140, 110, 80, 52, 28, 10, 286, 275, 255, 228, 196, 161, 125, 90
Offset: 1
Northwest corner (the array is read by southwest falling antidiagonals):
1, 4, 10, 20, 35, 56, 84, ...
2, 7, 16, 30, 50, 77, 112, ...
3, 10, 22, 40, 65, 98, 140, ...
4, 13, 28, 50, 80, 119, 168, ...
5, 16, 34, 60, 95, 140, 196, ...
6, 19, 40, 70, 110, 161, 224, ...
T(6,1) = (1)**(6) = 6;
T(6,2) = (1,2)**(6,7) = 1*7+2*6 = 19;
T(6,3) = (1,2,3)**(6,7,8) = 1*8+2*7+3*6 = 40.
-
b[n_] := n; c[n_] := n
t[n_, k_] := Sum[b[k - i] c[n + i], {i, 0, k - 1}]
TableForm[Table[t[n, k], {n, 1, 10}, {k, 1, 10}]]
Flatten[Table[t[n - k + 1, k], {n, 12}, {k, n, 1, -1}]]
r[n_] := Table[t[n, k], {k, 1, 60}] (* A213500 *)
-
t(n,k) = sum(i=0, k - 1, (k - i) * (n + i));
tabl(nn) = {for(n=1, nn, for(k=1, n, print1(t(k,n - k + 1),", ");); print(););};
tabl(12) \\ Indranil Ghosh, Mar 26 2017
-
def t(n, k): return sum((k - i) * (n + i) for i in range(k))
for n in range(1, 13):
print([t(k, n - k + 1) for k in range(1, n + 1)]) # Indranil Ghosh, Mar 26 2017
A101089
Second partial sums of fourth powers (A000583).
Original entry on oeis.org
1, 18, 116, 470, 1449, 3724, 8400, 17172, 32505, 57838, 97812, 158522, 247793, 375480, 553792, 797640, 1125009, 1557354, 2120020, 2842686, 3759833, 4911236, 6342480, 8105500, 10259145, 12869766, 16011828, 19768546, 24232545, 29506544
Offset: 1
Cecilia Rossiter, Dec 14 2004
a(7) = 8400 = 1*(8-1)^4 + 2*(8-2)^4 + 3*(8-3)^4 + 4*(8-4)^4 + 5*(8-5)^4 + 6*(8-6)^4 + 7*(8-7)^4. - _Bruno Berselli_, Jan 31 2014
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
- Luciano Ancora, Recurrence relation for the second partial sums of m-th powers.
- Luciano Ancora, Second partial sums of the m-th powers.
- Craig L. Knecht, Walter Trump, Daniel ben-Avraham and Robert M. Ziff, Retention Capacity of Random Surfaces, Phys. Rev. Lett., Vol. 108 (2012), 045703.
- Feihu Liu, Guoce Xin, and Chen Zhang, Ehrhart Polynomials of Order Polytopes: Interpreting Combinatorial Sequences on the OEIS, arXiv:2412.18744 [math.CO], 2024. See p. 13.
- C. P. Neuman and D. I. Schonbach, Evaluation of sums of convolved powers using Bernoulli numbers, SIAM Rev., Vol. 19, No. 1 (1977), pp. 90-99. MR0428678 (55 #1698). See Table 1. - _N. J. A. Sloane_, Mar 23 2014
- Claudio de J. Pita Ruiz V., Some Number Arrays Related to Pascal and Lucas Triangles, J. Int. Seq., Vol. 16 (2013), Article 13.5.7.
- Cecilia Rossiter, Depictions, Explorations and Formulas of the Euler/Pascal Cube. [Dead link]
- Cecilia Rossiter, Depictions, Explorations and Formulas of the Euler/Pascal Cube. [Cached copy, May 15 2013]
- K. J. Schrenk, N. A. M. Araújo, R. M. Ziff and H. J. Herrmann Retention Capacity of Correlated Surfaces, arXiv:1403.2082 [cond-mat.stat-mech], 2014.
- Index entries for linear recurrences with constant coefficients, signature (7,-21,35,-35,21,-7,1).
-
List([1..40], n-> (n+1)^2*(2*(n+1)^4-5*(n+1)^2+3)/60); # G. C. Greubel, Jul 31 2019
-
[(1/60)*n*(n+1)^2*(n+2)*(2*n*(n+2)-1): n in [1..40]]; // Vincenzo Librandi, Mar 24 2014
-
f:=n->(2*n^6-5*n^4+3*n^2)/60;
[seq(f(n),n=0..50)]; # N. J. A. Sloane, Mar 23 2014
-
a[n_] := n(n+1)^2(n+2)(2n(n+2) -1)/60; Table[a[n], {n, 40}]
CoefficientList[Series[(1+x)*(1+10*x+x^2)/(1-x)^7, {x,0,40}], x] (* Vincenzo Librandi, Mar 24 2014 *)
Nest[Accumulate[#]&,Range[30]^4,2] (* Harvey P. Dale, Aug 13 2024 *)
-
a(n)=n*(n+1)^2*(n+2)*(2*n*(n+2)-1)/60 \\ Charles R Greathouse IV, Mar 18 2014
-
[n*(n+1)^2*(n+2)*(2*n*(n+2)-1)/60 for n in range(1,40)] # Danny Rorabaugh, Apr 20 2015
A213555
Rectangular array: (row n) = b**c, where b(h) = h^3, c(h) = n-1+h, n>=1, h>=1, and ** = convolution.
Original entry on oeis.org
1, 10, 2, 46, 19, 3, 146, 82, 28, 4, 371, 246, 118, 37, 5, 812, 596, 346, 154, 46, 6, 1596, 1253, 821, 446, 190, 55, 7, 2892, 2380, 1694, 1046, 546, 226, 64, 8, 4917, 4188, 3164, 2135, 1271, 646, 262, 73, 9, 7942, 6942, 5484, 3948, 2576, 1496, 746
Offset: 1
Northwest corner (the array is read by falling antidiagonals):
1...10...46....146...371....812
2...19...82....246...596....1253
3...28...118...346...821....1694
4...37...154...446...1046...2135
5...46...190...546...1271...2576
6...55...226...646...1496...3017
-
b[n_] := n^3; c[n_] := n
t[n_, k_] := Sum[b[k - i] c[n + i], {i, 0, k - 1}]
TableForm[Table[t[n, k], {n, 1, 10}, {k, 1, 10}]]
Flatten[Table[t[n - k + 1, k], {n, 12}, {k, n, 1, -1}]]
r[n_] := Table[t[n, k], {k, 1, 60}] (* A213555 *)
d = Table[t[n, n], {n, 1, 40}] (* A213556 *)
s[n_] := Sum[t[i, n + 1 - i], {i, 1, n}]
s1 = Table[s[n], {n, 1, 50}] (* A213547 *)
A213556
Principal diagonal of the convolution array A213555.
Original entry on oeis.org
1, 19, 118, 446, 1271, 3017, 6300, 11964, 21117, 35167, 55858, 85306, 126035, 181013, 253688, 348024, 468537, 620331, 809134, 1041334, 1324015, 1664993, 2072852, 2556980, 3127605, 3795831, 4573674, 5474098, 6511051, 7699501
Offset: 1
Showing 1-5 of 5 results.
Comments