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.

A331477 Number of n element multisets of n element multisets of an n-set.

Original entry on oeis.org

1, 1, 6, 220, 73815, 286243776, 13949678575756, 8800321588119330984, 73241437035618231162682185, 8183604949527627465377060678018870, 12477686558866630120430437118910496237274716, 263383624455446425760290611316122951917033704595478840
Offset: 0

Views

Author

Andrew Howroyd, Jan 17 2020

Keywords

Examples

			The a(2) = 6 multisets are:
   {{1,1}, {1,1}},
   {{1,1}, {1,2}},
   {{1,1}, {2,2}},
   {{1,2}, {1,2}},
   {{1,2}, {2,2}},
   {{2,2}, {2,2}}.
		

Crossrefs

Main diagonal of A331436.

Programs

  • Mathematica
    Table[Binomial[Binomial[2n-1,n]+n-1,n],{n,0,20}] (* Harvey P. Dale, Aug 19 2021 *)
  • PARI
    a(n)={binomial(binomial(2*n - 1, n) + n - 1, n)}

Formula

a(n) = binomial(binomial(2*n - 1, n) + n - 1, n).