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 A128322 #5 Jul 03 2024 19:33:44 %S A128322 1,3,8,41,234,1602,11976,98541,866942,8139602,80559456,837863578, %T A128322 9098447188,102867879636,1206145137840,14632952210685,183197674060470, %U A128322 2362463132266770,31320354882679440,426245968192108590 %N A128322 Column 1 of triangle A128320; a(n) = A128321(n) + 2n*A128321(n-1), where A128321 is column 0 of triangle A128320. %F A128322 a(n) = Sum_{k=0..[(n+1)/2]} A000108(n-k)*A000108(k)*(k+1)!*C(n+1,2k) where A000108 is the Catalan numbers. %F A128322 a(n) = Sum_{k=0..[(n+1)/2]} C(2(n-k),n-k)/(n-k+1)*C(2k,k)/(k+1)*(k+1)!*C(n+1,2k). %o A128322 (PARI) {a(n)=sum(k=0,(n+1)\2,binomial(2*n-2*k,n-k)/(n-k+1)*binomial(2*k,k)/(k+1) *(k+1)!*binomial(n+1,2*k))} %o A128322 for(n=0,25, print1(a(n),", ")) %Y A128322 Cf. A128320 (triangle), A128321 (column 0), A128323 (column 2), A128324 (row sums); variant: A115082. %K A128322 nonn %O A128322 0,2 %A A128322 _Paul D. Hanna_, Feb 25 2007