A139459 Triangle read by rows: binomial(3*n,3*k), 0 <= k <= n.
1, 1, 1, 1, 20, 1, 1, 84, 84, 1, 1, 220, 924, 220, 1, 1, 455, 5005, 5005, 455, 1, 1, 816, 18564, 48620, 18564, 816, 1, 1, 1330, 54264, 293930, 293930, 54264, 1330, 1, 1, 2024, 134596, 1307504, 2704156, 1307504, 134596, 2024, 1, 1, 2925, 296010, 4686825, 17383860, 17383860, 4686825, 296010, 2925, 1
Offset: 0
Examples
First few rows of the triangle are: [0] 1; [1] 1, 1; [2] 1, 20, 1; [3] 1, 84, 84, 1; [4] 1, 220, 924, 220, 1; [5] 1, 455, 5005, 5005, 455, 1; [6] 1, 816, 18564, 48620, 18564, 816, 1; ... Row 5 = (1, 220, 924, 220, 1) = ConvOffs transform of (1, 20, 84, 220); where A006566 = (0, 1, 20, 84, 220, 455, ...).
Programs
-
Mathematica
Table[Binomial[3*n, 3*k], {n, 0, 9}, {k, 0, n}] // Flatten (* Amiram Eldar, Jun 01 2025 *)
Extensions
More terms from Amiram Eldar, Jun 01 2025
Comments