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 A380886 #10 Feb 07 2025 09:11:52 %S A380886 1,1,3,1,5,8,1,11,17,21,1,21,42,50,55,1,43,100,128,138,144,1,85,235, %T A380886 323,358,370,377,1,171,561,813,923,965,979,987,1,341,1331,2043,2378, %U A380886 2510,2559,2575,2584,1,683,3158,5150,6125,6527,6681,6737,6755,6765,1,1365,7503,12967,15772,16972,17441,17617,17680,17700,17711 %N A380886 Triangle T(n,k), 1<=k<=n: column k are the coefficients of the INVERT transform of Sum_{i=1..k} i*x^i. %F A380886 T(n,k) = [x^n] 1/(1-x^1-2*x^2-3*x^3-4*x^4-...-k*x^k) . %e A380886 The full array starts %e A380886 1 1 1 1 1 1 1 1 1 1 %e A380886 1 3 3 3 3 3 3 3 3 3 %e A380886 1 5 8 8 8 8 8 8 8 8 %e A380886 1 11 17 21 21 21 21 21 21 21 %e A380886 1 21 42 50 55 55 55 55 55 55 %e A380886 1 43 100 128 138 144 144 144 144 144 %e A380886 1 85 235 323 358 370 377 377 377 377 %e A380886 1 171 561 813 923 965 979 987 987 987 %e A380886 1 341 1331 2043 2378 2510 2559 2575 2584 2584 %e A380886 1 683 3158 5150 6125 6527 6681 6737 6755 6765 %e A380886 but the non-interesting upper right triangular part is not put into the sequence. %p A380886 A380886 := proc(n,k) %p A380886 local g,x ; %p A380886 g := 1/(1-add(i*x^i,i=1..k)) ; %p A380886 coeftayl(g,x=0,n) ; %p A380886 end proc: %p A380886 seq(seq( A380886(n,k),k=1..n),n=1..12) ; %Y A380886 Cf. A001045 (column k=2), A101822 (column k=3), A322059 (column k=4?), A001906 (diagonal), A054452 (subdiagonal). %K A380886 nonn,tabl,easy %O A380886 1,3 %A A380886 _R. J. Mathar_, Feb 07 2025