cp's OEIS Frontend

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.

A330454 Number of sets of nonempty sets of nonempty multisets of positive integers with total sum n.

Original entry on oeis.org

1, 1, 2, 7, 15, 39, 94, 224, 526, 1236, 2857, 6568, 15003, 34030, 76757, 172216, 384386, 853960, 1888891, 4160524, 9128355, 19953661, 43463021, 94354292, 204182435, 440505489, 947590424, 2032730905, 4348897216, 9280361316, 19755155955, 41953293592, 88891338202
Offset: 0

Views

Author

Gus Wiseman, Dec 17 2019

Keywords

Examples

			The a(4) = 15 partitions:
  ((4))  ((22))  ((13))      ((112))        ((1111))
                 ((1)(3))    ((1)(12))      ((1)(111))
                 ((1))((3))  ((2)(11))      ((1))((111))
                             ((1))((12))    ((1))((1)(11))
                             ((2))((11))
                             ((1))((1)(2))
		

Crossrefs

Programs

  • Mathematica
    ppl[n_,k_]:=Switch[k,0,{n},1,IntegerPartitions[n],_,Join@@Table[Union[Sort/@Tuples[ppl[#,k-1]&/@ptn]],{ptn,IntegerPartitions[n]}]];
    Table[Length[Select[ppl[n,3],And[UnsameQ@@#,And@@UnsameQ@@@#]&]],{n,0,10}]

Formula

Weigh transform of A261049. The weigh transform of a sequence (s_1, s_2, ...) is the sequence with generating function Product_{i > 0} (1 + x^i)^s_i.