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.

A332948 Number of entries in the eighth blocks of all set partitions of [n] when blocks are ordered by increasing lengths.

This page as a plain text file.
%I A332948 #6 Mar 03 2020 21:49:51
%S A332948 1,73,1666,31241,486377,6638568,82413787,961757669,10756109317,
%T A332948 116409307679,1228840258412,12766418662681,131564790987337,
%U A332948 1352403410824806,13925656629847559,144227711099572501,1508401366805906552,15986784485974156076,172225656206792090516
%N A332948 Number of entries in the eighth blocks of all set partitions of [n] when blocks are ordered by increasing lengths.
%H A332948 Alois P. Heinz, <a href="/A332948/b332948.txt">Table of n, a(n) for n = 8..576</a>
%H A332948 Wikipedia, <a href="https://en.wikipedia.org/wiki/Partition_of_a_set">Partition of a set</a>
%p A332948 b:= proc(n, i, t) option remember; `if`(n=0, [1, 0], `if`(i>n, 0,
%p A332948       add((p-> p+`if`(t>0 and t-j<1, [0, p[1]*i], 0))(b(n-i*j, i+1,
%p A332948       max(0, t-j))/j!*combinat[multinomial](n, i$j, n-i*j)), j=0..n/i)))
%p A332948     end:
%p A332948 a:= n-> b(n, 1, 8)[2]:
%p A332948 seq(a(n), n=8..26);
%Y A332948 Column k=8 of A319298.
%K A332948 nonn
%O A332948 8,2
%A A332948 _Alois P. Heinz_, Mar 03 2020