login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A073187 Triangle of C(n+1,k)*C(2*n-3*k,n-3*k)/(n+1) by rows. 1

%I #11 May 30 2018 13:51:50

%S 1,1,2,5,1,14,5,42,21,132,84,3,429,330,28,1430,1287,180,4862,5005,990,

%T 12,16796,19448,5005,165,58786,75582,24024,1430,208012,293930,111384,

%U 10010,55,742900,1144066,503880,61880,1001,2674440,4457400,2238390

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

%H G. C. Greubel, <a href="/A073187/b073187.txt">Rows n=0..150 of triangle, flattened</a>

%e 1;

%e 1;

%e 2;

%e 5, 1;

%e 14, 5;

%e 42, 21;

%e 132, 84, 3;

%e 429, 330, 28;

%e 1430, 1287, 180; ...

%t 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 (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 Row sums give A071969.

%K nonn,tabf

%O 1,3

%A _Michael Somos_, Jul 19 2002

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 13:11 EDT 2024. Contains 371913 sequences. (Running on oeis4.)