OFFSET
1,4
COMMENTS
A rooted partition of n is an integer partition of n - 1.
FORMULA
O.g.f.: Product_{n>0} (1 + d(n-1) x^n) where d(n) = A000005(n) and d(0) = 1.
EXAMPLE
The a(7) = 9 rooted twice-partitions:
(5), (11111),
(4)(), (22)(), (1111)(), (3)(1), (111)(1),
(2)(1)(), (11)(1)().
MATHEMATICA
Table[Sum[Product[If[k===1, 1, DivisorSigma[0, k-1]], {k, ptn}], {ptn, Select[IntegerPartitions[n-1], UnsameQ@@#&]}], {n, 50}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Mar 26 2018
STATUS
approved