OFFSET
0,4
COMMENTS
The Heinz numbers of these integer partitions are given by A324850.
EXAMPLE
The a(1) = 1 through a(8) = 5 integer partitions:
(1) (11) (21) (211) (2111) (321) (3211) (32111)
(111) (1111) (11111) (411) (4111) (41111)
(2211) (22111) (221111)
(21111) (211111) (2111111)
(111111) (1111111) (11111111)
For example, (3,2,1,1) is such a partition because (2/1) * (2/1) * (3/2) * (5/3) = 10 is an integer.
MATHEMATICA
Table[Length[Select[IntegerPartitions[n], IntegerQ[Product[Prime[i]/i, {i, #}]]&]], {n, 0, 30}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Mar 20 2019
STATUS
approved