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”).

A332023
T(n, k) = binomial(n+2, 3) + binomial(k+1, 2) + binomial(k, 1). Triangle read by rows, T(n, k) for 0 <= k <= n.
2
0, 1, 3, 4, 6, 9, 10, 12, 15, 19, 20, 22, 25, 29, 34, 35, 37, 40, 44, 49, 55, 56, 58, 61, 65, 70, 76, 83, 84, 86, 89, 93, 98, 104, 111, 119, 120, 122, 125, 129, 134, 140, 147, 155, 164, 165, 167, 170, 174, 179, 185, 192, 200, 209, 219
OFFSET
0,3
COMMENTS
The sequence increases monotonically.
FORMULA
T(n, k) = (1/6)*(3*k^2 + 9*k + n*(n + 1)*(n + 2)).
EXAMPLE
The triangle starts:
[0] 0;
[1] 1, 3;
[2] 4, 6, 9;
[3] 10, 12, 15, 19;
[4] 20, 22, 25, 29, 34;
[5] 35, 37, 40, 44, 49, 55;
[6] 56, 58, 61, 65, 70, 76, 83;
[7] 84, 86, 89, 93, 98, 104, 111, 119;
[8] 120, 122, 125, 129, 134, 140, 147, 155, 164;
[9] 165, 167, 170, 174, 179, 185, 192, 200, 209, 219;
MAPLE
T := (n, k) -> binomial(n+2, 3) + binomial(k+1, 2) + binomial(k, 1):
seq(seq(T(n, k), k=0..n), n=0..9);
CROSSREFS
Cf. A000292 (first column), A062748 (diagonal), A005286 (subdiagonal), A332697 (row sums).
Cf. A014370.
Sequence in context: A350977 A047231 A050131 * A361837 A191326 A191185
KEYWORD
nonn,tabl
AUTHOR
Peter Luschny, Feb 20 2020
STATUS
approved