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 A326520 #6 Jul 13 2019 09:12:29 %S A326520 1,1,3,7,17,35,103,197 %N A326520 Number of normal multiset partitions of weight n where every part has the same average. %C A326520 A multiset partition is normal if it covers an initial interval of positive integers. %H A326520 Gus Wiseman, <a href="/A038041/a038041.txt">Sequences counting and ranking multiset partitions whose part lengths, sums, or averages are constant or strict.</a> %e A326520 The a(0) = 1 through a(4) = 17 normal multiset partitions where every part has the same average: %e A326520 {} {{1}} {{1,1}} {{1,1,1}} {{1,1,1,1}} %e A326520 {{1,2}} {{1,1,2}} {{1,1,1,2}} %e A326520 {{1},{1}} {{1,2,2}} {{1,1,2,2}} %e A326520 {{1,2,3}} {{1,1,2,3}} %e A326520 {{1},{1,1}} {{1,2,2,2}} %e A326520 {{2},{1,3}} {{1,2,2,3}} %e A326520 {{1},{1},{1}} {{1,2,3,3}} %e A326520 {{1,2,3,4}} %e A326520 {{1},{1,1,1}} %e A326520 {{1,1},{1,1}} %e A326520 {{1,2},{1,2}} %e A326520 {{1,3},{2,2}} %e A326520 {{1,4},{2,3}} %e A326520 {{2},{1,2,3}} %e A326520 {{1},{1},{1,1}} %e A326520 {{2},{2},{1,3}} %e A326520 {{1},{1},{1},{1}} %t A326520 sps[{}]:={{}};sps[set:{i_,___}]:=Join@@Function[s,Prepend[#,s]&/@sps[Complement[set,s]]]/@Cases[Subsets[set],{i,___}]; %t A326520 mps[set_]:=Union[Sort[Sort/@(#/.x_Integer:>set[[x]])]&/@sps[Range[Length[set]]]]; %t A326520 allnorm[n_]:=If[n<=0,{{}},Function[s,Array[Count[s,y_/;y<=#]+1&,n]]/@Subsets[Range[n-1]+1]]; %t A326520 Table[Length[Select[Join@@mps/@allnorm[n],SameQ@@Mean/@#&]],{n,0,5}] %Y A326520 Cf. A038041, A051293, A255906, A317583, A326512, A326515, A326517, A326518, A326519, A326521, A326536. %K A326520 nonn,more %O A326520 0,3 %A A326520 _Gus Wiseman_, Jul 12 2019