A261720 Array of pyramidal (3-dimensional figurate numbers) read by antidiagonals.
1, 1, 4, 1, 5, 10, 1, 6, 14, 20, 1, 7, 18, 30, 35, 1, 8, 22, 40, 55, 56, 1, 9, 26, 50, 75, 91, 84, 1, 10, 30, 60, 95, 126, 140, 120, 1, 11, 34, 70, 115, 161, 196, 204, 165, 1, 12, 38, 80, 135, 196, 252, 288, 285, 220, 1, 13, 42, 90, 155, 231, 308, 372, 405, 385, 286
Offset: 1
Examples
Row 2: (1, 5, 14, 30, 55, ...) = (1, 4, 10, 20, 35, ...) + (0, 1, 4, 10, 20, 35, ...). (1, 7, 22, 50, ...) is the binomial transform of (1, 6, 9, 4, 0, 0, 0, ...) 3rd row in Pascal's triangle (1,4) followed by zeros. (1, 7, 22, 50, ...) is the third partial sum of (1, 4, 4, 4, ...).
References
- Albert H. Beiler, "Recreations in the Theory of Numbers"; Dover, 1966, p. 194.
Crossrefs
Programs
-
Mathematica
T[n_,k_]:=k(k+1)((k-1)n+3)/6; Flatten[Table[T[n-k+1,k],{n,11},{k,n}]] (* Stefano Spezia, Aug 15 2024 *)
Formula
T(n,k) = A080851(n,k).
Given: first sequence in the array is A000292: (1, 4, 10, 20, 35, ...) Subsequent rows are generated by adding (0, 1, 4, 10, 20, 35, ...) to the current row.
n-th row is the binomial transform of row 3 in Pascal's triangle (1,n) followed by zeros. Alternatively, begin with (1, 4, 10, 20, ...) being the binomial transform of (1, 3, 3, 1, 0, 0, 0, ...). Add (0, 1, 2, 1, 0, 0, 0, ...) to the latter to obtain the inverse binomial transform of the next row: (1, 5, 14, 30, 55,..); then repeat the operation.
The row starting (1, N, ...) is the 3rd partial sum of (1, (N-3), (N-3), (N-3), ...).
From Stefano Spezia, Aug 15 2024: (Start)
T(n,k) = k*(k + 1)*((k - 1)*n + 3)/6.
G.f. as array: x*y*(1 + x*(y - 1))/((1 - x)^2*(1 - y)^4).
E.g.f. as array: exp(y)*y*(exp(x)*(6 + 3*(1 + x)*y + x*y^2) - 3*(2 + y))/6. (End)
Comments