OFFSET
0,4
COMMENTS
FORMULA
E.g.f.: (1-exp(z))^3/(exp(z)-2).
EXAMPLE
Let 1,2,3 denote three labeled elements. Let | denote a separation between two ranks. E.g. if element 1 is on rank (also called level) one, element 3 is on rank two and element 2 is on rank three, then we have the ranking 1|3|2.
For n=3 we have obviously a(3)=6 possible rankings: 2|3|1, 3|2|1, 1|2|3, 2|1|3, 3|1|2, 1|3|2.
For n=4 we have a(4) = 60 possible rankings, e.g. (elements 1 and 3 are on the same rank in the first two examples) 31|2|4, 2|4|31, 4|1|3|2.
MAPLE
series((1-exp(z))^3/(exp(z)-2), z=0, 30);
spec := [S,
{
B = Set(Z, 1 <= card),
C = Sequence(B, 2 <= card),
S = Prod(B, C)
}, labeled]:
struct := n -> combstruct[count](spec, size = n);
seq(struct(n), n = 0..21); # Peter Luschny, Jul 22 2014
MATHEMATICA
m = 22; CoefficientList[(1-E^(z))^3/(E^z-2) + O[z]^m, z] Range[0, m-1]! (* Jean-François Alcover, Jun 11 2019 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Thomas Wieder, Jan 01 2005
EXTENSIONS
More terms from Peter Luschny, Jul 22 2014
STATUS
approved