This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A196232 #19 Sep 05 2019 02:29:36 %S A196232 1,3,10,26,83,322,1182,3971,15662,69371,328016,1460297,6080910, %T A196232 26901643,123926071,598722099,2838432721,13220493552,63710261040, %U A196232 312134646974,1554373859464,7673048166979,37597940705361,186986406578372 %N A196232 Number of different ways to select 5 disjoint subsets from {1..n} with equal element sum. %e A196232 a(10) = 3: {1,8}, {2,7}, {3,6}, {4,5}, {9} have element sum 9; {1,9}, {2,8}, {3,7}, {4,6}, {10} have element sum 10; {1,10}, {2,9}, {3,8}, {4,7}, {5,6} have element sum 11. %t A196232 b[l_, n_, k_] := b[l, n, k] = Module[{i, j}, If[l == Array[0 &, k], 1, If[Total[l] > n*(n - 1)/2, 0, b[l, n - 1, k]] + Sum[If[l[[j]] - n < 0, 0, b[Sort[Table[l[[i]] - If[i == j, n, 0], {i, 1, k}]], n-1, k]], {j, 1, k}] ]]; %t A196232 T[n_, k_] := Sum[b[Array[t &, k], n, k], {t, 2*k - 1, Floor[n*(n + 1)/(2*k) ]}]/k!; %t A196232 a[n_] := T[n, 5]; %t A196232 Table[an = a[n]; Print["a(", n, ") = ", an]; an, {n, 9, 25}] (* _Jean-François Alcover_, Jun 08 2018, after _Alois P. Heinz_ *) %Y A196232 Column k=5 of A196231. Cf. A000225, A161943, A164934, A164949, A196233, A196234, A196235, A196236, A196237. %K A196232 nonn,more %O A196232 9,2 %A A196232 _Alois P. Heinz_, Sep 29 2011 %E A196232 a(26)-a(28) from _Alois P. Heinz_, Sep 25 2014 %E A196232 a(29)-a(32) from _Bert Dobbelaere_, Sep 05 2019