A290035
Number of set partitions of [n] having exactly six blocks of size > 1.
Original entry on oeis.org
10395, 405405, 8828820, 142101960, 1889157270, 21997025050, 232434862660, 2281515816580, 21144158620585, 187205367167455, 1597460349645160, 13226705948208060, 106823347196076588, 845052099612035700, 6569883153685651800, 50334986592592563576
Offset: 12
- Alois P. Heinz, Table of n, a(n) for n = 12..1000
- Wikipedia, Partition of a set
- Index entries for linear recurrences with constant coefficients, signature (84, -3360, 85204, -1538460, 21061260, -227279184, 1984514004, -14280788214, 85828895124, -435042172944, 1872967672764, -6883607484444, 21668771179044, -58531231913904, 135734401224444, -270012108240369, 459750737925864, -667610836187984, 822369705703584, -852988627596768, 737567996531840, -524515347742464, 301116476275200, -135928473663744, 46399971446784, -11247176540160, 1723509964800, -125411328000).
A290036
Number of set partitions of [n] having exactly seven blocks of size > 1.
Original entry on oeis.org
135135, 6756750, 186486300, 3765521760, 62239847670, 893865232260, 11567184248620, 138167790320560, 1549369653596765, 16513475306458130, 168849390493503720, 1668236066705023200, 16016472213542100300, 150103132298249730600, 1378211903535510443400
Offset: 14
- Alois P. Heinz, Table of n, a(n) for n = 14..1000
- Wikipedia, Partition of a set
- Index entries for linear recurrences with constant coefficients, signature (120, -6930, 256564, -6843837, 140161164, -2293167668, 30793317984, -346027498674, 3301174490432, -27034426023228, 191677191769368, -1184495927428914, 6413285791562760, -30547549870770240, 128399094121475760, -477325107218885805, 1571764443755152680, -4588173158058601250, 11875425392771515860, -27240699344951953809, 55318442559624109580, -99273350219483495580, 157041371328829338576, -218253110396224153888, 265336916554318663296, -280638192440433919872, 256449901319079809536, -200704456428999204096, 133025721255740648448, -73584771640934648832, 33313567375875428352, -12012672014150270976, 3315383509586411520, -657169361790566400, 83234996748288000, -5056584744960000).
A290037
Number of set partitions of [n] having exactly eight blocks of size > 1.
Original entry on oeis.org
2027025, 126351225, 4307428125, 106546244805, 2141473308975, 37150564425975, 577265949054795, 8235084928545475, 109751266389634870, 1384084804861708950, 16677998006092973550, 193476119789167365150, 2173729827868142994450, 23766456155164279406850
Offset: 16
A290038
Number of set partitions of [n] having exactly nine blocks of size > 1.
Original entry on oeis.org
34459425, 2618916300, 108030297375, 3211227869850, 77083218186975, 1588144599241200, 29158562820672285, 489227666491814250, 7636058324659014250, 112346788172994575200, 1573773827894456037850, 21155069633041246602700, 274588861338588612866050
Offset: 18
A355144
Number T(n,k) of partitions of [n] having exactly k blocks of size at least three; triangle T(n,k), n>=0, 0<=k<=floor(n/3), read by rows.
Original entry on oeis.org
1, 1, 2, 4, 1, 10, 5, 26, 26, 76, 117, 10, 232, 540, 105, 764, 2445, 931, 2620, 11338, 6909, 280, 9496, 53033, 48546, 4900, 35696, 253826, 324753, 64295, 140152, 1235115, 2131855, 691075, 15400, 568504, 6142878, 13792779, 6739876, 400400, 2390480, 31126539, 88890880, 61274213, 7217210
Offset: 0
T(4,1) = 5: 1234, 123|4, 124|3, 134|2, 1|234.
T(6,2) = 10: 123|456, 124|356, 125|346, 126|345, 134|256, 135|246, 136|245, 145|236, 146|235, 156|234.
Triangle T(n,k) begins:
1;
1;
2;
4, 1;
10, 5;
26, 26;
76, 117, 10;
232, 540, 105;
764, 2445, 931;
2620, 11338, 6909, 280;
9496, 53033, 48546, 4900;
35696, 253826, 324753, 64295;
140152, 1235115, 2131855, 691075, 15400;
...
-
b:= proc(n) option remember; expand(`if`(n=0, 1, add(
`if`(i>2, x, 1)*binomial(n-1, i-1)*b(n-i), i=1..n)))
end:
T:= n-> (p-> seq(coeff(p, x, i), i=0..degree(p)))(b(n)):
seq(T(n), n=0..14); # Alois P. Heinz, Jun 20 2022
-
b[n_] := b[n] = Expand[If[n == 0, 1, Sum[If[i > 2, x, 1]*
Binomial[n - 1, i - 1]*b[n - i], {i, 1, n}]]];
T[n_] := CoefficientList[b[n], x];
Table[T[n], {n, 0, 14}] // Flatten (* Jean-François Alcover, Jun 25 2022, after Alois P. Heinz *)
A290039
Number of set partitions of [n] having exactly ten blocks of size > 1.
Original entry on oeis.org
654729075, 59580345825, 2924020048950, 102811233675150, 2903837588727075, 70057683857786625, 1499598592952460000, 29215503851264230500, 527544117129699920250, 8948695357270547228350, 144075089938915244609500, 2219478078319305088785500
Offset: 20