A152828 Triangle read by rows, A007318 rows repeated three times .
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 2, 1, 1, 2, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 4, 6, 4, 1, 1, 4, 6, 4, 1, 1, 4, 6, 4, 1, 1, 5, 10, 10, 5, 1, 1, 5, 10, 10, 5, 1, 1, 5, 10, 10, 5, 1, 1, 6, 15, 20, 15, 6, 1, 1, 6, 15, 20, 15, 6, 1, 1, 6, 15, 20, 15, 6, 1, 1, 7, 21, 35, 35, 21, 7, 1, 1, 7, 21
Offset: 0
Examples
Triangle begins : 1 ; 1 ; 1 ; 1,1 ; 1,1 ; 1,1 ; 1,2,1 ; 1,2,1 ; 1,2,1 ; 1,3,3,1 ; 1,3,3,1 ; 1,3,3,1 ; 1,4,6,4,1 ; ...
Programs
-
Mathematica
{#,#,#}&/@Table[Binomial[n,k],{n,0,11},{k,0,n}]//Flatten (* Harvey P. Dale, Jul 22 2024 *)
Comments