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 A202212 #15 Oct 12 2020 20:02:36 %S A202212 1,3,5,15,27,33,105,195,261,279,945,1785,2475,2925,2895,10395,19845, %T A202212 28035,34425,37935,35685,135135,259875,371385,465255,533925,562275, %U A202212 509985,2027025,3918915,5644485,7158375,8390025,9218475,9401805,8294895,34459425,66891825,96891795,123898005,147093975,165209625,176067675,175313565,151335135,654729075,1274998725,1854727875,2385808425,2857013775,3252014325,3545408475,3693650625,3609649575,3061162125 %N A202212 Triangle read by rows: T(n,k) (1 <= k <= n-1, n >= 2) = d(2*(n-k)-1)*(d(2*n-2)/d(2*(n-k)-2) - d(2*n-3)/d(2*(n-k)-3)), where d = A006882 is the double factorial function. %H A202212 N. Ochiumi, <a href="http://infoshako.sk.tsukuba.ac.jp/~hachi/COS/cos2011/abst/ochiumi.pdf">On the total sum of number of nodes covering a given number of leaves in an unordered binary tree</a>. %e A202212 Triangle begins %e A202212 1, %e A202212 3, 5, %e A202212 15, 27, 33, %e A202212 105, 195, 261, 279, %e A202212 945, 1785, 2475, 2925, 2895, %e A202212 10395, 19845, 28035, 34425, 37935, 35685, %e A202212 135135, 259875, 371385, 465255, 533925, 562275, 509985, %e A202212 ... %p A202212 d:=doublefactorial; %p A202212 a:=(n,k)-> d(2*(n-k)-1)*(d(2*n-2)/d(2*(n-k)-2) - d(2*n-3)/d(2*(n-k)-3)); %p A202212 f:=n->[seq(a(n,k),k=1..n-1)]; %p A202212 for n from 1 to 10 do lprint(f(n)); od: %t A202212 a[n_, k_] := (2*(n-k)-1)!!*((2*n-2)!!/(2*(n-k)-2)!!-(2*n-3)!!/(2*(n-k)-3)!!); Table[a[n, k], {n, 2, 11}, {k, 1, n-1}] // Flatten (* _Jean-François Alcover_, Jan 08 2014 *) %Y A202212 Edges of triangle are A006882 and A129890. %K A202212 nonn,tabl %O A202212 2,2 %A A202212 _N. J. A. Sloane_, Dec 14 2011