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.

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

Original entry on oeis.org

1, 1, 1, 1, 4, 4, 1, 9, 21, 14, 1, 16, 66, 100, 50, 1, 25, 160, 410, 455, 182, 1, 36, 330, 1260, 2310, 2016, 672, 1, 49, 609, 3220, 8610, 12222, 8778, 2508, 1, 64, 1036, 7224, 26250, 53592, 61908, 37752, 9438, 1, 81, 1656, 14700, 69300, 189882, 312312, 303732, 160875, 35750, 1
Offset: 0

Views

Author

Paul Boddington, Mar 07 2003

Keywords

Comments

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.
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]

Examples

			Contribution from _Peter Bala_, Oct 28 2008: (Start)
Triangle begins
n\k|..0....1....2....3....4....5
================================
0..|..1
1..|..1....1
2..|..1....4....4
3..|..1....9...21...14
4..|..1...16...66..100...50
5..|..1...25..160..410..455..182
...
(End)
		

Crossrefs

A051924 (main diagonal), A145903( h-vectors type D associahedra). [From Peter Bala, Oct 28 2008]

Programs

  • Maple
    A080721 := proc(n,k)
        binomial(n,k)*(binomial(n+k,k)-binomial(n+k-2,k-1))
    end proc: # R. J. Mathar, Mar 22 2013
  • Mathematica
    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 *)
  • PARI
    T(n,k)=binomial(n,k)*(binomial(n+k,k)-binomial(n+k-2,k-1))
    for (n=0, 10, for (k=0,n, print1(T(n,k),", ")));
    /* Joerg Arndt, Feb 21 2013 */