OFFSET
0,5
COMMENTS
Number of integer partitions of n such that it is not possible to choose a sequence of distinct integer partitions, one of each part.
Also the number of integer partitions of n with at least one part k satisfying that the multiplicity of k exceeds the number of integer partitions of k.
LINKS
Max Alekseyev, Table of n, a(n) for n = 0..1000
FORMULA
G.f.: (1 - Product_{k>=1} (1 - x^(k*(A000041(k)+1)))) / Product_{k>=1} (1 - x^k). - Max Alekseyev, Nov 20 2025
EXAMPLE
The a(2) = 1 through a(8) = 12 partitions:
(11) (111) (211) (311) (222) (511) (611)
(1111) (2111) (411) (2221) (2222)
(11111) (2211) (3211) (3311)
(3111) (4111) (4211)
(21111) (22111) (5111)
(111111) (31111) (22211)
(211111) (32111)
(1111111) (41111)
(221111)
(311111)
(2111111)
(11111111)
MATHEMATICA
Table[Length[Select[IntegerPartitions[n], Length[Select[Tuples[IntegerPartitions/@#], UnsameQ@@#&]]==0&]], {n, 0, 15}]
KEYWORD
nonn
AUTHOR
Gus Wiseman, Aug 29 2025
STATUS
approved
