OFFSET
0,8
COMMENTS
Alternative name: Number of strict integer partitions of n that are either empty, or (1) have smallest part not dividing all the others and (2) have greatest part not divisible by all the others.
EXAMPLE
The a(5) = 1 through a(13) = 9 partitions (empty column indicated by dot):
(3,2) . (4,3) (5,3) (5,4) (6,4) (6,5) (7,5) (7,6)
(5,2) (7,2) (7,3) (7,4) (5,4,3) (8,5)
(4,3,2) (5,3,2) (8,3) (7,3,2) (9,4)
(9,2) (10,3)
(5,4,2) (11,2)
(6,4,3)
(6,5,2)
(7,4,2)
(8,3,2)
MATHEMATICA
Table[Length[Select[IntegerPartitions[n], #=={}||UnsameQ@@#&&!And@@IntegerQ/@(#/Min@@#)&&!And@@IntegerQ/@(Max@@#/#)&]], {n, 0, 30}]
CROSSREFS
The first condition alone gives A341450.
The second condition alone gives A343377.
The opposite version is A343378.
The version for "or" instead of "and" is A343382.
A000009 counts strict partitions.
A000070 counts partitions with a selected part.
A006128 counts partitions with a selected position.
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