OFFSET
1,9
EXAMPLE
The a(n) partitions for n = 7, 9, 18, 24:
(4,3) (6,3) (12,4,1,1) (19,4,1)
(4,4,1) (11,4,1,1,1) (18,4,1,1)
(8,5,1,1,1,1,1) (9,6,1,1,1,1,1,1,1,1,1)
(4,2,2,2,1,1,1,1,1,1,1,1)
For example, (4,4,1) has sum of primes of parts 7+7+2 = 16 and product of parts 4*4*1 = 16, so is counted under a(9).
MATHEMATICA
Table[Length[Select[IntegerPartitions[n], Times@@#==Plus@@Prime/@#&]], {n, 30}]
CROSSREFS
The Heinz numbers of these partitions are given by A331384.
Numbers divisible by the sum of their prime factors are A036844.
Partitions whose product is divisible by their sum are A057568.
Numbers divisible by the sum of their prime indices are A324851.
Product of prime indices is divisible by sum of prime indices: A326149.
Partitions whose Heinz number is divisible by their sum are A330950.
Partitions whose Heinz number is divisible by their sum of primes: A330953.
Sum of prime factors is divisible by sum of prime indices: A331380
Partitions whose product divides their sum of primes are A331381.
KEYWORD
nonn,more
AUTHOR
Gus Wiseman, Jan 16 2020
EXTENSIONS
a(71)-a(87) from Robert Price, Apr 10 2020
STATUS
approved