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

 


Triangle defined by T(n,k) = binomial(n^2, n*k), for n>=0, k=0..n, as read by rows.
10

%I #22 Oct 16 2018 15:53:43

%S 1,1,1,1,6,1,1,84,84,1,1,1820,12870,1820,1,1,53130,3268760,3268760,

%T 53130,1,1,1947792,1251677700,9075135300,1251677700,1947792,1,1,

%U 85900584,675248872536,39049918716424,39049918716424,675248872536,85900584,1,1

%N Triangle defined by T(n,k) = binomial(n^2, n*k), for n>=0, k=0..n, as read by rows.

%C Column 1 equals A014062.

%C Row sums equal A167009.

%C Antidiagonal sums equal A209331.

%C Ignoring initial row T(0,0), equals the logarithmic derivative of the g.f. of triangle A209196.

%H Paul D. Hanna, <a href="/A209330/b209330.txt">Rows n = 0..30, as a flattened table of n, a(n) for n = 0..495</a>

%e The triangle of coefficients C(n^2,n*k), n>=k, k=0..n, begins:

%e 1;

%e 1, 1;

%e 1, 6, 1;

%e 1, 84, 84, 1;

%e 1, 1820, 12870, 1820, 1;

%e 1, 53130, 3268760, 3268760, 53130, 1;

%e 1, 1947792, 1251677700, 9075135300, 1251677700, 1947792, 1;

%e 1, 85900584, 675248872536, 39049918716424, 39049918716424, 675248872536, 85900584, 1; ...

%t Table[Binomial[n^2, n*k], {n,0,10}, {k,0,n}]//Flatten (* _G. C. Greubel_, Jan 05 2018 *)

%o (PARI) {T(n,k)=binomial(n^2,n*k)}

%o for(n=0,10,for(k=0,n,print1(T(n,k),", "));print(""))

%Y Cf. A014062 (column 1), A167009 (row sums), A209331, A209196.

%Y Cf. related triangles: A209196 (exp), A228836, A228832, A226234.

%Y Cf. A206830.

%K nonn,tabl

%O 0,5

%A _Paul D. Hanna_, Mar 06 2012

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | 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 September 22 22:30 EDT 2024. Contains 376140 sequences. (Running on oeis4.)