A342514 Number of integer partitions of n with distinct first quotients.
1, 1, 2, 2, 4, 5, 6, 8, 11, 14, 18, 24, 28, 35, 41, 52, 64, 81, 93, 115, 137, 157, 190, 225, 268, 313, 366, 430, 502, 587, 683, 790, 913, 1055, 1217, 1393, 1605, 1830, 2098, 2384, 2722, 3101, 3524, 4005, 4524, 5137, 5812, 6570, 7434, 8360, 9416, 10602, 11881
Offset: 0
Keywords
Examples
The partition (4,3,3,2,1) has first quotients (3/4,1,2/3,1/2) so is counted under a(13), but it has first differences (-1,0,-1,-1) so is not counted under A325325(13). The a(1) = 1 through a(9) = 14 partitions: (1) (2) (3) (4) (5) (6) (7) (8) (9) (11) (21) (22) (32) (33) (43) (44) (54) (31) (41) (42) (52) (53) (63) (211) (221) (51) (61) (62) (72) (311) (321) (322) (71) (81) (411) (331) (332) (432) (511) (422) (441) (3211) (431) (522) (521) (531) (611) (621) (3221) (711) (3321) (4311) (5211)
Links
- Eric Weisstein's World of Mathematics, Logarithmically Concave Sequence.
- Gus Wiseman, Sequences counting and ranking integer partitions by the differences of their successive parts.
- Gus Wiseman, Sequences counting and ranking partitions and compositions by their differences and quotients.
Crossrefs
The version for differences instead of quotients is A325325.
The ordered version is A342529.
The strict case is A342520.
The Heinz numbers of these partitions are A342521.
A000005 counts constant partitions.
A000009 counts strict partitions.
A000041 counts partitions.
A167865 counts strict chains of divisors > 1 summing to n.
A342098 counts partitions with all adjacent parts x > 2y.
Programs
-
Mathematica
Table[Length[Select[IntegerPartitions[n],UnsameQ@@Divide@@@Partition[#,2,1]&]],{n,0,30}]
Comments