This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A122177 #10 Jul 23 2024 08:38:07 %S A122177 1,3,1,6,4,1,10,10,6,1,15,20,21,9,1,21,35,56,45,13,1,28,56,126,165,91, %T A122177 18,1,36,84,252,495,455,171,24,1,45,120,462,1287,1820,1140,300,31,1, %U A122177 55,165,792,3003,6188,5985,2600,496,39,1,66,220,1287,6435,18564,26334 %N A122177 Triangle, read by rows, where T(n,k) = C( k*(k+1)/2 + n-k + 2, n-k) for n>=k>=0. %C A122177 Remarkably, column k of the matrix inverse (A121437) equals signed column k of matrix power: A107876^(k*(k+1)/2 + 3) for k>=0. %e A122177 Triangle begins: %e A122177 1; %e A122177 3, 1; %e A122177 6, 4, 1; %e A122177 10, 10, 6, 1; %e A122177 15, 20, 21, 9, 1; %e A122177 21, 35, 56, 45, 13, 1; %e A122177 28, 56, 126, 165, 91, 18, 1; %e A122177 36, 84, 252, 495, 455, 171, 24, 1; %e A122177 45, 120, 462, 1287, 1820, 1140, 300, 31, 1; ... %t A122177 A122177[n_, k_] := Binomial[k*(k + 1)/2 + n - k + 2, n - k]; %t A122177 Table[A122177[n, k], {n, 0, 10}, {k, 0, n}] (* _Paolo Xausa_, Jul 23 2024 *) %o A122177 (PARI) T(n,k)=if(n<k||k<0,0,binomial(k*(k+1)/2+n-k+2,n-k)) %Y A122177 Cf. A121437 (inverse); variants: A098568, A122175, A122176. %K A122177 nonn,tabl %O A122177 0,2 %A A122177 _Paul D. Hanna_, Aug 25 2006