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 A115951 #25 Sep 08 2022 08:45:24 %S A115951 1,0,2,0,2,6,0,0,12,20,0,0,6,60,70,0,0,0,60,280,252,0,0,0,20,420,1260, %T A115951 924,0,0,0,0,280,2520,5544,3432,0,0,0,0,70,2520,13860,24024,12870,0,0, %U A115951 0,0,0,1260,18480,72072,102960,48620,0,0,0,0,0,252,13860,120120,360360,437580,184756 %N A115951 Expansion of 1/sqrt(1-4*x*y-4*x^2*y). %C A115951 Row sums are A006139. Diagonal sums are A115962. %C A115951 Coefficients of 2^n * P(n, x) with P the Legendre P polynomials. Reflection of triangle A008556. - _Ralf Stephan_, Apr 07 2016. %H A115951 G. C. Greubel, <a href="/A115951/b115951.txt">Rows n = 0..100 of triangle, flattened</a> %F A115951 Number triangle T(n,k) = C(2k,k)*C(k,n-k). %F A115951 From _Peter Bala_, Sep 02 2015: (Start) %F A115951 Binomial transform is A063007; equivalently, P * M = A063007, where P denotes Pascal's triangle A007318 and M denotes the present array. %F A115951 P * M * P^-1 is a signed version of A063007. (End) %e A115951 Triangle begins %e A115951 1, %e A115951 0, 2, %e A115951 0, 2, 6, %e A115951 0, 0, 12, 20, %e A115951 0, 0, 6, 60, 70, %e A115951 0, 0, 0, 60, 280, 252, %e A115951 0, 0, 0, 20, 420, 1260, 924 %t A115951 Table[Binomial[2k, k]Binomial[k, n-k], {n, 0, 10}, {k, 0, n}]//Flatten (* _Michael De Vlieger_, Sep 02 2015 *) %o A115951 (Magma) /* As triangle */ [[Binomial(2*k,k)*Binomial(k,n-k): k in [0..n]]: n in [0.. 15]]; // _Vincenzo Librandi_, Sep 03 2015 %o A115951 (PARI) {T(n,k) = binomial(2*k,k)*binomial(k,n-k)}; \\ _G. C. Greubel_, May 06 2019 %o A115951 (Sage) [[binomial(2*k,k)*binomial(k,n-k) for k in (0..n)] for n in (0..10)] # _G. C. Greubel_, May 06 2019 %Y A115951 Cf. A006139 (row sums), A063007 (binomial transform), A115962 (diagonal sums). %K A115951 easy,nonn,tabl %O A115951 0,3 %A A115951 _Paul Barry_, Mar 14 2006