A360612
Number of binary operators defined on the finite chain L_n={0,1,...n}, C:L_n^2-> L_n, which are increasing in each argument, and satisfy the boundary conditions C(0,n)=C(n,0)=0 and C(n,n)=n.
Original entry on oeis.org
1, 14, 805, 208152, 250409016, 1423422089804, 38533696399916432, 4988815527667401921920, 3096067500138473517778378240, 9222307552079662925642825622240000, 131945758198070262889738914466064452265625, 9070830675953705403006049148134626173379375000000
Offset: 1
-
Table[Product[Product[Product[(i + j + k - 1)/(i + j + k - 2), {k, 1, n}], {j, 1, n}], {i, 1, n}] - Product[Product[Product[(i + j + k - 1)/(i + j + k - 2), {k, 1, n - 1}], {j, 1, n}], {i, 1, n}], {n, 1, 15}]
A071094
Number of ways to tile hexagon of edges n, n, n+1, n, n, n+1 with diamonds of side 1.
Original entry on oeis.org
1, 3, 50, 4116, 1646568, 3184461423, 29706808370096, 1335119245893326400, 288882990167192721013376, 300792059519113653077154558000, 1506680146887473588202049621593937500, 36298820709557430183399305000196605531250000, 4205446372314569673006362329181090368935937500000000, 2342761095072644391194625697884219372917666852341417500000000
Offset: 0
- J. Propp, Enumeration of matchings: problems and progress, pp. 255-291 in L. J. Billera et al., eds, New Perspectives in Algebraic Combinatorics, Cambridge, 1999 (see page 261).
-
Table[Product[(i+j+k+2)/(i+j+k+1),{i,0,n-1},{j,0,n-1},{k,0,n}],{n,0,15}] (* Vaclav Kotesovec, Apr 26 2015 *)
-
a(n) = prod(k=0, n, binomial(2*n+k,n+k)/binomial(n+k,k)) \\ Michel Marcus, May 20 2013
A071096
Number of ways to tile hexagon of edges n, n+1, n+2, n, n+1, n+2 with diamonds of side 1.
Original entry on oeis.org
1, 10, 490, 116424, 133613766, 739309710568, 19702998159210080, 2527580342020127455360, 1560172391098377453031770400, 4632518859090968506120863642225000, 66153724447703043353053979949899667187500, 4542776083800437392420665771479758969781250000000, 1499928882906010042230116408158354282455601808812500000000
Offset: 0
- J. Propp, Enumeration of matchings: problems and progress, pp. 255-291 in L. J. Billera et al., eds, New Perspectives in Algebraic Combinatorics, Cambridge, 1999 (see page 261).
-
Table[Product[Product[Product[(i+j+k-1)/(i+j+k-2),{i,1,n+1}],{j,1,n+1}],{k,1,n+1}],{n,0,10}]/2 (* Alexander Adamchuk, Jul 10 2006 *)
-
{a(n) = abs(matdet(matrix(n+1, n+1, i, j, binomial(2*(n+1), i+j))))}; \\ Shifted by Georg Fischer, Jun 19 2022
Showing 1-3 of 3 results.