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.
%I A331436 #15 Jan 31 2020 15:36:16 %S A331436 1,1,0,1,1,0,1,2,1,0,1,3,6,1,0,1,4,21,20,1,0,1,5,55,220,70,1,0,1,6, %T A331436 120,1540,3060,252,1,0,1,7,231,7770,73815,53130,924,1,0,1,8,406,30856, %U A331436 1088430,5461512,1107568,3432,1,0,1,9,666,102340,11009376,286243776,581106988,26978328,12870,1,0 %N A331436 Array read by antidiagonals: A(n,k) is the number of n element multisets of n element multisets of a k-set. %H A331436 Andrew Howroyd, <a href="/A331436/b331436.txt">Table of n, a(n) for n = 0..1325</a> %F A331436 A(n,k) = binomial(binomial(n + k - 1, n) + n - 1, n). %e A331436 Array begins: %e A331436 ================================================================== %e A331436 n\k | 0 1 2 3 4 5 6 %e A331436 ----+------------------------------------------------------------- %e A331436 0 | 1 1 1 1 1 1 1 ... %e A331436 1 | 0 1 2 3 4 5 6 ... %e A331436 2 | 0 1 6 21 55 120 231 ... %e A331436 3 | 0 1 20 220 1540 7770 30856 ... %e A331436 4 | 0 1 70 3060 73815 1088430 11009376 ... %e A331436 5 | 0 1 252 53130 5461512 286243776 8809549056 ... %e A331436 6 | 0 1 924 1107568 581106988 127860662755 13949678575756 ... %e A331436 ... %e A331436 The A(2,2) = 6 multisets are: %e A331436 {{1,1}, {1,1}}, %e A331436 {{1,1}, {1,2}}, %e A331436 {{1,1}, {2,2}}, %e A331436 {{1,2}, {1,2}}, %e A331436 {{1,2}, {2,2}}, %e A331436 {{2,2}, {2,2}}. %o A331436 (PARI) T(n,k)={binomial(binomial(n + k - 1, n) + n - 1, n)} %o A331436 { for(n=0, 7, for(k=0, 7, print1(T(n,k), ", ")); print) } %Y A331436 Rows n=0..3 are A000012, A001477, A002817, A140236. %Y A331436 Columns k=0..10 are A000007, A000012, A000984, A099121, A099122, A099123, A099124, A099125, A099126, A099127, A099128. %Y A331436 Min diagonal is A331477. %K A331436 nonn,tabl %O A331436 0,8 %A A331436 _Andrew Howroyd_, Jan 17 2020