OFFSET
0,3
COMMENTS
These are strict twice-partitions of weight n and type PRR.
LINKS
FORMULA
a(n) = Sum_{d|n} binomial(A000005(n/d),d) * d!
EXAMPLE
The a(1) = 1 through a(8) = 10 twice-partitions:
(1) (2) (3) (4) (5) (6) (7) (8)
(11) (111) (22) (11111) (33) (1111111) (44)
(1111) (222) (2222)
(11)(2) (111111) (22)(4)
(2)(11) (111)(3) (4)(22)
(3)(111) (1111)(4)
(4)(1111)
(11111111)
(1111)(22)
(22)(1111)
MATHEMATICA
Table[If[n==0, 1, Sum[Binomial[Length[Divisors[n/d]], d]*d!, {d, Divisors[n]}]], {n, 0, 100}]
CROSSREFS
For distinct instead of equal block-sums we have A279786.
This is the strict case of A279789.
Normal multiset partitions of this type are counted by the strict case of A382204.
A006171 counts multiset partitions into constant blocks of integer partitions of n.
KEYWORD
nonn
AUTHOR
Gus Wiseman, Apr 03 2025
STATUS
approved
