cp's OEIS Frontend

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.

A073187 Triangle of C(n+1,k)*C(2*n-3*k,n-3*k)/(n+1) by rows.

This page as a plain text file.
%I A073187 #11 May 30 2018 13:51:50
%S A073187 1,1,2,5,1,14,5,42,21,132,84,3,429,330,28,1430,1287,180,4862,5005,990,
%T A073187 12,16796,19448,5005,165,58786,75582,24024,1430,208012,293930,111384,
%U A073187 10010,55,742900,1144066,503880,61880,1001,2674440,4457400,2238390
%N A073187 Triangle of C(n+1,k)*C(2*n-3*k,n-3*k)/(n+1) by rows.
%H A073187 G. C. Greubel, <a href="/A073187/b073187.txt">Rows n=0..150 of triangle, flattened</a>
%e A073187 1;
%e A073187 1;
%e A073187 2;
%e A073187 5,  1;
%e A073187 14, 5;
%e A073187 42, 21;
%e A073187 132, 84, 3;
%e A073187 429, 330, 28;
%e A073187 1430, 1287, 180; ...
%t A073187 T[n_, k_]:= If[k < 0 || k > n/3, 0, Binomial[n + 1, k]*Binomial[2*n - 3*k, n - 3*k]/(n + 1)]; Table[T[n, k], {n,0,10}, {k,0,Floor[n/3]}]//Flatten (* _G. C. Greubel_, May 29 2018 *)
%o A073187 (PARI) alias(C,binomial); T(n,k)=if(k<0 || k>n/3,0,C(n+1,k)*C(2*n-3*k,n-3*k)/(n+1))
%Y A073187 Row sums give A071969.
%K A073187 nonn,tabf
%O A073187 1,3
%A A073187 _Michael Somos_, Jul 19 2002