A084878
Number of (k,m,n)-antichains of multisets with k=3 and m=6.
Original entry on oeis.org
0, 0, 0, 15, 1729366, 10340309701, 24380294253318, 36539301527565851, 42407896071362952494, 42091311943805278602897, 37781049596189171124466966, 31727275407315883994852626087
Offset: 0
A084879
Number of (k,m,n)-multiantichains of multisets with k=3 and m=2.
Original entry on oeis.org
1, 3, 18, 189, 2106, 22113, 220158, 2114829, 19853586, 183662073, 1683014598, 15327998469, 139038783066, 1257874611633, 11360039237838, 102475402586109, 923689049088546, 8321664384098793, 74945758272961878, 674816500839877749
Offset: 0
-
[(9^n - 2*6^n + 3*3^n)/2: n in [0..50]]; // G. C. Greubel, Oct 08 2017
-
Table[(9^n - 2*6^n + 3*3^n)/2, {n, 0, 50}] (* G. C. Greubel, Oct 08 2017 *)
-
for(n=0,50, print1((9^n - 2*6^n + 3*3^n)/2, ", ")) \\ G. C. Greubel, Oct 08 2017
A084881
Number of (k,m,n)-multiantichains of multisets with k=3 and m=4.
Original entry on oeis.org
1, 3, 39, 1873, 237531, 35640463, 4584906969, 507411694933, 50579357233311, 4705226804488123, 418198020376490949, 36058355701780773793, 3046470997266047282091, 253885499519508283406983
Offset: 0
-
[(81^n - 12*54^n + 24*42^n + 4*36^n - 24*31^n + 18*27^n + 6*26^n - 108*18^n + 108*14^n + 83*9^n - 166*6^n + 90*3^n)/24: n in [0..50]]; // G. C. Greubel, Oct 08 2017
-
Table[(1/4!)*(81^n - 12*54^n + 24*42^n + 4*36^n - 24*31^n + 18*27^n + 6*26^n - 108*18^n + 108*14^n + 83*9^n - 166*6^n + 90*3^n), {n, 0, 50}] (* G. C. Greubel, Oct 08 2017 *)
-
for(n=0,50, print1((81^n - 12*54^n + 24*42^n + 4*36^n - 24*31^n + 18*27^n + 6*26^n - 108*18^n + 108*14^n + 83*9^n - 166*6^n + 90*3^n)/24, ", ")) \\ G. C. Greubel, Oct 08 2017
A084880
Number of (k,m,n)-multiantichains of multisets with k=3 and m=3.
Original entry on oeis.org
1, 3, 28, 701, 28156, 1105553, 38746288, 1242925421, 37586964436, 1093785614153, 31039025026648, 866337233127941, 23916052195646716, 655400382364459553, 17872830907936220608, 485794685997062639261, 13175148372787020760996
Offset: 0
- Goran Kilibarda and Vladeta Jovovic, Antichains of Multisets, J. Integer Seqs., Vol. 7, 2004.
- Index entries for linear recurrences with constant coefficients, signature (77,-2277,32895,-242514,854388,-1102248).
-
[(27^n - 6*18^n + 6*14^n + 9*9^n - 18*6^n + 14*3^n)/6: n in [0..50]]; // G. C. Greubel, Oct 08 2017
-
LinearRecurrence[{77,-2277,32895,-242514,854388,-1102248},{1,3,28,701, 28156,1105553},20] (* Harvey P. Dale, Apr 08 2015 *)
Table[(27^n - 6*18^n + 6*14^n + 9*9^n - 18*6^n + 14*3^n)/6, {n, 0, 50}] (* G. C. Greubel, Oct 08 2017 *)
-
for(n=0,50, print1((27^n - 6*18^n + 6*14^n + 9*9^n - 18*6^n + 14*3^n)/6, ", ")) \\ G. C. Greubel, Oct 08 2017
A133789
Let P(A) denote the power set of an n-element set A. Then a(n) = the number of pairs of elements {x,y} of P(A) for which either 0) x and y are disjoint and for which x is not a subset of y and y is not a subset of x, 1) x and y are disjoint and for which either x is a subset of y or y is a subset of x, or 2) x and y intersect but for which x is not a subset of y and y is not a subset of x.
Original entry on oeis.org
0, 1, 4, 16, 70, 316, 1414, 6196, 26590, 112156, 466774, 1923076, 7863310, 31972396, 129459334, 522571156, 2104535230, 8460991036, 33972711094, 136277478436, 546270602350, 2188566048076, 8764718254054, 35090241492916, 140455083984670, 562102715143516
Offset: 0
a(3) = 16 because for P(A) = {{},{1},{2},{3},{1,2},{1,3},{2,3},{1,2,3}} we see that
{1} and {2},
{1} and {3},
{2} and {3},
{1} and {2,3},
{2} and {1,3},
{3} and {1,2}
are disjoint, while
{} and {1},
{} and {2},
{} and {3},
{} and {1,2},
{} and {1,3},
{} and {2,3},
{} and {1,2,3}
are disjoint and one is a subset of the other and
{1,2} and {1,3},
{1,2} and {2,3},
{1,3} and {2,3}
are intersecting, but neither is a subset of the other.
Also, through row 8 of Pascal's triangle the a(3)=16 even entries are 2 (so a(0)=0 and a(1)=1) then 4,6,4 (so a(2)=4) then 10,10 then 6,20,6 then 8,28,56,70,56,28,8. [_Aaron Meyerowitz_, Oct 29 2013]
Edited by
N. J. A. Sloane, Jan 20 2008 to incorporate suggestions from several contributors.
Comments