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!)
A080721 Triangle of binomial(n,k)*(binomial(n+k,k)-binomial(n+k-2,k-1)). 4

%I #28 Aug 27 2021 13:04:16

%S 1,1,1,1,4,4,1,9,21,14,1,16,66,100,50,1,25,160,410,455,182,1,36,330,

%T 1260,2310,2016,672,1,49,609,3220,8610,12222,8778,2508,1,64,1036,7224,

%U 26250,53592,61908,37752,9438,1,81,1656,14700,69300,189882,312312,303732,160875,35750,1

%N Triangle of binomial(n,k)*(binomial(n+k,k)-binomial(n+k-2,k-1)).

%C For n>1 and 0 <= k <= n, a(n,k) is the number of compatible k-sets of cluster variables in Fomin and Zelevinsky's 'cluster algebra' of finite type D_n.

%C Triangle of f-vectors of the simplicial complexes dual to the generalized associahedra of type D_n (n >= 2). See A145903 for the corresponding triangle of h-vectors. For the triangles of f-vectors of type A and type B associahedra see A033282 and A063007 respectively. [_Peter Bala_, Oct 28 2008]

%H Michael De Vlieger, <a href="/A080721/b080721.txt">Table of n, a(n) for n = 0..11475</a> (rows 0 <= n <= 150, flattened)

%H S. Fomin and A. Zelevinsky, <a href="http://arXiv.org/abs/math/0104151">Cluster algebras I: Foundations</a>, arXiv:math/0104151 [math.RT], 2001; J. Amer. Math. Soc. 15 (2002), no. 2, 497-529.

%H S. Fomin and A. Zelevinsky, <a href="http://www.jstor.org/stable/3597238">Y-systems and generalized associahedra</a>, Ann. of Math. (2) 158 (2003), no. 3, 977-1018.

%H S. Fomin and N. Reading, <a href="https://arxiv.org/abs/math/0505518">Root systems and generalized associahedra</a>, Lecture notes for IAS/Park-City 2004; arXiv:math/0505518 [math.CO], 2005-2008. [From _Peter Bala_, Oct 28 2008]

%H Yasuaki Gyoda, <a href="https://arxiv.org/abs/2105.07974">Positive cluster complexes and tau-tilting simplicial complexes of cluster-tilted algebras of finite type</a>, arXiv:2105.07974 [math.RT], 2021, see page 34.

%e Contribution from _Peter Bala_, Oct 28 2008: (Start)

%e Triangle begins

%e n\k|..0....1....2....3....4....5

%e ================================

%e 0..|..1

%e 1..|..1....1

%e 2..|..1....4....4

%e 3..|..1....9...21...14

%e 4..|..1...16...66..100...50

%e 5..|..1...25..160..410..455..182

%e ...

%e (End)

%p A080721 := proc(n,k)

%p binomial(n,k)*(binomial(n+k,k)-binomial(n+k-2,k-1))

%p end proc: # _R. J. Mathar_, Mar 22 2013

%t Flatten[Table[Binomial[n,k](Binomial[n+k,k]-Binomial[Abs[n+k-2],k-1]),{n,0,10},{k,0,n}]] (* _Harvey P. Dale_, Feb 20 2013 *)

%o (PARI)

%o T(n,k)=binomial(n,k)*(binomial(n+k,k)-binomial(n+k-2,k-1))

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

%o /* _Joerg Arndt_, Feb 21 2013 */

%Y Cf. A033282, A063007.

%Y A051924 (main diagonal), A145903( h-vectors type D associahedra). [From _Peter Bala_, Oct 28 2008]

%K easy,nonn,tabl

%O 0,5

%A _Paul Boddington_, Mar 07 2003

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 25 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)