OFFSET
0,2
COMMENTS
x = (x_1_1 .. x_1_u1)(x_2_1 .. x_2_u2) .. (x_k_1 .. x_k_uk) y = (y_1_1 .. y_1_v1)(y_2_1 .. y-2_v2) .. (y_m_1 .. y_m_vm) x covers y iff ui >= vi, k >= m, x_i_j >= y_i_j, or, the 3-dimensional Ferrers plot of y falls within that of x.
The analog for ordinary partitions and 2D-Ferrers plots gives A000070.
LINKS
Suresh Govindarajan, Table of n, a(n) for n = 0..40
MATHEMATICA
coversplaneQ[parent_?planepartitionQ, child_?planepartitionQ] := Block[{dif=Length[parent]-Length[child], p=Length/@ parent, c=PadRight[Length/@ child, Length[parent], 0]}, And[dif>=0, Min[p-c]>=0, Min[parent-MapThread[PadRight[ #1, #2, 0]&, { PadRight[child, Length[parent], {{0}}], p}]]>=0]]; Table[Count[Outer[coversplaneQ, planepartitions[k], planepartitions[k-1], 1], True, -1], {k, 12}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Wouter Meeussen, Feb 28 2004
STATUS
approved