login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A319149
Number of superperiodic integer partitions of n.
14
1, 1, 1, 2, 1, 3, 1, 3, 2, 3, 1, 6, 1, 3, 3, 5, 1, 7, 1, 7, 3, 3, 1, 13, 2, 3, 4, 9, 1, 13, 1, 11, 3, 3, 3, 23, 1, 3, 3, 20, 1, 17, 1, 16, 9, 3, 1, 38, 2, 9, 3, 23, 1, 25, 3, 36, 3, 3, 1, 71, 1, 3, 11, 49, 3, 31, 1, 52, 3, 19
OFFSET
1,4
COMMENTS
An integer partition is superperiodic if either it consists of a single part equal to 1 or its parts have a common divisor > 1 and its multiset of multiplicities is itself superperiodic. For example, (8,8,6,6,4,4,4,4,2,2,2,2) has multiplicities (4,4,2,2) with multiplicities (2,2) with multiplicities (2) with multiplicities (1). The first four of these partitions are periodic and the last is (1), so (8,8,6,6,4,4,4,4,2,2,2,2) is superperiodic.
EXAMPLE
The a(24) = 11 superperiodic partitions:
(24)
(12,12)
(8,8,8)
(9,9,3,3)
(8,8,4,4)
(6,6,6,6)
(10,10,2,2)
(6,6,6,2,2,2)
(6,6,4,4,2,2)
(4,4,4,4,4,4)
(4,4,4,4,2,2,2,2)
(3,3,3,3,3,3,3,3)
(2,2,2,2,2,2,2,2,2,2,2,2)
MATHEMATICA
wotperQ[m_]:=Or[m=={1}, And[GCD@@m>1, wotperQ[Sort[Length/@Split[Sort[m]]]]]];
Table[Length[Select[IntegerPartitions[n], wotperQ]], {n, 30}]
KEYWORD
nonn
AUTHOR
Gus Wiseman, Sep 12 2018
STATUS
approved