A239312
Number of condensed integer partitions of n.
Original entry on oeis.org
1, 1, 1, 2, 3, 3, 5, 6, 9, 10, 14, 16, 23, 27, 33, 41, 51, 62, 75, 93, 111, 134, 159, 189, 226, 271, 317, 376, 445, 520, 609, 714, 832, 972, 1129, 1304, 1520, 1753, 2023, 2326, 2692, 3077, 3540, 4050, 4642, 5298, 6054, 6887, 7854, 8926, 10133, 11501, 13044
Offset: 0
a(5) = 3 gives the number of partitions of 5 that result from condensations as shown here: 5 -> 5, 41 -> 41, 32 -> 32, 311 -> 32, 221 -> 41, 2111 -> 32, 11111 -> 5.
From _Gus Wiseman_, Mar 12 2024: (Start)
The a(1) = 1 through a(9) = 10 condensed partitions:
(1) (2) (3) (4) (5) (6) (7) (8) (9)
(2,1) (2,2) (3,2) (3,3) (4,3) (4,4) (5,4)
(3,1) (4,1) (4,2) (5,2) (5,3) (6,3)
(5,1) (6,1) (6,2) (7,2)
(3,2,1) (3,2,2) (7,1) (8,1)
(4,2,1) (3,3,2) (4,3,2)
(4,2,2) (4,4,1)
(4,3,1) (5,2,2)
(5,2,1) (5,3,1)
(6,2,1)
(End)
The complement is counted by
A370320.
The version for prime factors (not all divisors) is
A370592, ranks
A368100.
A237685 counts partitions of depth 1, or
A353837 if we include depth 0.
A355731 counts choices of a divisor of each prime index, firsts
A355732.
Cf.
A355535,
A355733,
A355739,
A367867,
A368097,
A368414,
A370583,
A370584,
A370594,
A370806,
A370808.
-
b:= proc(n,i) option remember; `if`(n=0, {[]},
`if`(i=1, {[n]}, {seq(map(x-> `if`(j=0, x,
sort([x[], i*j])), b(n-i*j, i-1))[], j=0..n/i)}))
end:
a:= n-> nops(b(n$2)):
seq(a(n), n=0..50); # Alois P. Heinz, Jul 01 2019
-
u[n_, k_] := u[n, k] = Map[Total, Split[IntegerPartitions[n][[k]]]]; t[n_] := t[n] = DeleteDuplicates[Table[Sort[u[n, k]], {k, 1, PartitionsP[n]}]]; Table[Length[t[n]], {n, 0, 30}]
Table[Length[Select[IntegerPartitions[n], Length[Select[Tuples[Divisors/@#],UnsameQ@@#&]]>0&]], {n,0,30}] (* Gus Wiseman, Mar 12 2024 *)
A370320
Number of non-condensed integer partitions of n, or partitions where it is not possible to choose a different divisor of each part.
Original entry on oeis.org
0, 0, 1, 1, 2, 4, 6, 9, 13, 20, 28, 40, 54, 74, 102, 135, 180, 235, 310, 397, 516, 658, 843, 1066, 1349, 1687, 2119, 2634, 3273, 4045, 4995, 6128, 7517, 9171, 11181, 13579, 16457, 19884, 23992, 28859, 34646, 41506, 49634, 59211, 70533, 83836, 99504, 117867
Offset: 0
The a(0) = 0 through a(8) = 13 partitions:
. . (11) (111) (211) (221) (222) (331) (611)
(1111) (311) (411) (511) (2222)
(2111) (2211) (2221) (3221)
(11111) (3111) (3211) (3311)
(21111) (4111) (4211)
(111111) (22111) (5111)
(31111) (22211)
(211111) (32111)
(1111111) (41111)
(221111)
(311111)
(2111111)
(11111111)
The complement is counted by
A239312 (condensed partitions).
These partitions have ranks
A355740.
Factorizations in the case of prime factors are
A368413, complement
A368414.
The version for prime factors (not all divisors) is
A370593, ranks
A355529.
A355731 counts choices of a divisor of each prime index, firsts
A355732.
Cf.
A355535,
A355739,
A367867,
A368097,
A368110,
A370583,
A370584,
A370594,
A370806,
A370807,
A370808.
-
Table[Length[Select[IntegerPartitions[n], Length[Select[Tuples[Divisors/@#], UnsameQ@@#&]]==0&]],{n,0,30}]
A370595
Number of integer partitions of n such that only one set can be obtained by choosing a different divisor of each part.
Original entry on oeis.org
1, 1, 0, 1, 2, 0, 3, 2, 4, 3, 4, 5, 8, 9, 8, 13, 12, 17, 16, 27, 28, 33, 36, 39, 50, 58, 65, 75, 93, 94, 112, 125, 148, 170, 190, 209, 250, 273, 305, 341, 403, 432, 484, 561, 623, 708, 765, 873, 977, 1109, 1178, 1367, 1493, 1669, 1824, 2054, 2265, 2521, 2770
Offset: 0
The a(1) = 1 through a(15) = 13 partitions (A = 10, B = 11, C = 12, D = 13):
1 . 21 22 . 33 322 71 441 55 533 B1 553 77 933
31 51 421 332 522 442 722 444 733 D1 B22
321 422 531 721 731 552 751 B21 B31
521 4321 4322 4332 931 4433 4443
5321 4431 4432 5441 5442
5322 5332 6332 5532
5421 5422 7322 6621
6321 6322 7421 7332
7321 7422
7521
8421
9321
54321
The version for prime factors (not all divisors) is
A370594, ranks
A370647.
These partitions have ranks
A370810.
A355731 counts choices of a divisor of each prime index, firsts
A355732.
A370592 counts partitions with choosable prime factors, ranks
A368100.
A370593 counts partitions without choosable prime factors, ranks
A355529.
A370804 counts non-condensed partitions with no ones, complement
A370805.
A370814 counts factorizations with choosable divisors, complement
A370813.
-
Table[Length[Select[IntegerPartitions[n],Length[Union[Sort /@ Select[Tuples[Divisors/@#],UnsameQ@@#&]]]==1&]],{n,0,30}]
A370804
Number of non-condensed integer partitions of n into parts > 1.
Original entry on oeis.org
0, 0, 0, 0, 0, 0, 1, 0, 1, 2, 3, 3, 6, 6, 12, 14, 21, 25, 37, 43, 62, 75, 101, 124, 167, 198, 261, 316, 401, 488, 618, 745, 930, 1119, 1379, 1664, 2032, 2433, 2960, 3537, 4259, 5076, 6094, 7227, 8629, 10205, 12126, 14302, 16932, 19893, 23471, 27502, 32315, 37775
Offset: 0
The a(6) = 1 through a(14) = 12 partitions:
(222) . (2222) (333) (3322) (3332) (3333) (4333) (4442)
(3222) (4222) (5222) (4422) (7222) (5333)
(22222) (32222) (6222) (33322) (5522)
(33222) (43222) (8222)
(42222) (52222) (33332)
(222222) (322222) (43322)
(44222)
(53222)
(62222)
(332222)
(422222)
(2222222)
These partitions have as ranks the odd terms of
A355740.
The complement without ones is
A370805.
A355731 counts choices of a divisor of each prime index, firsts
A355732.
-
Table[Length[Select[IntegerPartitions[n],FreeQ[#,1] && Length[Select[Tuples[Divisors/@#],UnsameQ@@#&]]==0&]],{n,0,30}]
A370805
Number of condensed integer partitions of n into parts > 1.
Original entry on oeis.org
1, 0, 1, 1, 2, 2, 3, 4, 6, 6, 9, 11, 15, 18, 22, 27, 34, 41, 51, 62, 75, 90, 109, 129, 153, 185, 217, 258, 307, 359, 421, 493, 577, 675, 788, 909, 1062, 1227, 1418, 1633, 1894, 2169, 2497, 2860, 3285, 3754, 4298, 4894, 5587, 6359, 7230, 8215, 9331, 10567, 11965
Offset: 0
The a(0) = 1 through a(9) = 6 partitions:
() . (2) (3) (4) (5) (6) (7) (8) (9)
(2,2) (3,2) (3,3) (4,3) (4,4) (5,4)
(4,2) (5,2) (5,3) (6,3)
(3,2,2) (6,2) (7,2)
(3,3,2) (4,3,2)
(4,2,2) (5,2,2)
These partitions have as ranks the odd terms of
A368110, complement
A355740.
The complement without ones is
A370804, ranked by the odd terms of
A355740.
A355731 counts choices of a divisor of each prime index, firsts
A355732.
-
Table[Length[Select[IntegerPartitions[n],FreeQ[#,1] && Length[Select[Tuples[Divisors/@#],UnsameQ@@#&]]>0&]],{n,0,30}]
Showing 1-5 of 5 results.
Comments