OFFSET
0,4
COMMENTS
Also the number of reversed strict partitions of n with constant (equal) first-quotients.
The first quotients of a sequence are defined as if the sequence were an increasing divisor chain, so for example the quotients of (6,3,1) are (1/2,1/3).
LINKS
EXAMPLE
The a(1) = 1 through a(15) = 9 partitions (A..F = 10..15):
1 2 3 4 5 6 7 8 9 A B C D E F
21 31 32 42 43 53 54 64 65 75 76 86 87
41 51 52 62 63 73 74 84 85 95 96
61 71 72 82 83 93 94 A4 A5
421 81 91 92 A2 A3 B3 B4
A1 B1 B2 C2 C3
C1 D1 D2
931 842 E1
8421
MATHEMATICA
Table[Length[Select[IntegerPartitions[n], UnsameQ@@#&&SameQ@@Divide@@@Partition[#, 2, 1]&]], {n, 0, 30}]
CROSSREFS
The version for differences instead of quotients is A049980.
The non-strict ordered version is A342495.
The non-strict version is A342496.
The distinct instead of equal version is A342520.
A000005 counts constant partitions.
A154402 counts partitions with adjacent parts x = 2y.
A167865 counts strict chains of divisors > 1 summing to n.
A175342 counts compositions with equal differences.
KEYWORD
nonn
AUTHOR
Gus Wiseman, Mar 19 2021
STATUS
approved