OFFSET
0,4
COMMENTS
Alternative name: Number of strict integer partitions of n that are empty or have greatest part divisible by all the others.
LINKS
Andrew Howroyd, Table of n, a(n) for n = 0..1000
FORMULA
G.f.: 1 + Sum_{k>0} (x^k/(1 + x^k))*Product_{d|k} (1 + x^d). - Andrew Howroyd, Apr 17 2021
EXAMPLE
The a(1) = 1 through a(15) = 6 partitions (A..F = 10..15):
1 2 3 4 5 6 7 8 9 A B C D E F
21 31 41 42 61 62 63 82 A1 84 C1 C2 A5
51 421 71 81 91 632 93 841 D1 C3
621 631 821 A2 931 842 E1
B1 A21 C21
6321 8421
MATHEMATICA
Table[Length[Select[IntegerPartitions[n], #=={}||UnsameQ@@#&&And@@IntegerQ/@(Max@@#/#)&]], {n, 0, 30}]
PROG
(PARI) seq(n)={Vec(1 + sum(m=1, n, my(u=divisors(m)); x^m*prod(i=1, #u-1, 1 + x^u[i] + O(x^(n-m+1)))))} \\ Andrew Howroyd, Apr 17 2021
CROSSREFS
The strict complement is counted by A343377.
The case with smallest part divisible by all the others is A343378.
The case with smallest part not divisible by all the others is A343380.
A000005 counts divisors.
A000009 counts strict partitions.
A000070 counts partitions with a selected part.
A015723 counts strict partitions with a selected part.
A167865 counts strict chains of divisors > 1 summing to n.
A339564 counts factorizations with a selected factor.
KEYWORD
nonn
AUTHOR
Gus Wiseman, Apr 16 2021
STATUS
approved