OFFSET
0,3
COMMENTS
A twice-partition of n is a sequence of integer partitions, one of each part of an integer partition of n.
EXAMPLE
The a(1) = 1 through a(5) = 15 twice-partitions:
(1) (2) (3) (4) (5)
(11) (21) (22) (32)
(111) (31) (41)
(11)(1) (211) (221)
(1111) (311)
(11)(2) (2111)
(2)(11) (11111)
(21)(1) (21)(2)
(111)(1) (22)(1)
(3)(11)
(31)(1)
(111)(2)
(211)(1)
(111)(11)
(1111)(1)
MATHEMATICA
twiptn[n_]:=Join@@Table[Tuples[IntegerPartitions/@ptn], {ptn, IntegerPartitions[n]}];
Table[Length[Select[twiptn[n], UnsameQ@@Length/@#&]], {n, 0, 10}]
PROG
(PARI)
seq(n)={ local(Cache=Map());
my(g=Vec(-1+1/prod(k=1, n, 1 - y*x^k + O(x*x^n))));
my(F(m, r, b) = my(key=[m, r, b], z); if(!mapisdefined(Cache, key, &z),
z = if(r<=0||m==0, r==0, self()(m-1, r, b) + sum(k=1, m, my(c=polcoef(g[m], k)); if(!bittest(b, k)&&c, c*self()(min(m, r-m), r-m, bitor(b, 1<<k)))));
mapput(Cache, key, z)); z);
vector(n+1, i, F(i-1, i-1, 0))
} \\ Andrew Howroyd, Dec 31 2022
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Dec 03 2022
EXTENSIONS
Terms a(26) and beyond from Andrew Howroyd, Dec 31 2022
STATUS
approved