# Greetings from The On-Line Encyclopedia of Integer Sequences! http://oeis.org/ Search: id:a285922 Showing 1-1 of 1 %I A285922 #10 May 17 2018 08:06:31 %S A285922 1,196,8526,217560,4635939,67454772,877414538,10742461730, %T A285922 113528563148,1132899916148,10494458555126,96114856972680, %U A285922 831333224017303,7005224782844764,56197005110455286,453234116137501160,3555422918860518398,27541742188014185824 %N A285922 Number of ordered set partitions of [n] into seven blocks such that equal-sized blocks are ordered with increasing least elements. %H A285922 Alois P. Heinz, Table of n, a(n) for n = 7..700 %H A285922 Wikipedia, Partition of a set %p A285922 b:= proc(n, i, p) option remember; series(`if`(n=0 or i=1, %p A285922 (p+n)!/n!*x^n, add(x^j*b(n-i*j, i-1, p+j)*combinat %p A285922 [multinomial](n, n-i*j, i$j)/j!^2, j=0..n/i)), x, 8) %p A285922 end: %p A285922 a:= n-> coeff(b(n$2, 0), x, 7): %p A285922 seq(a(n), n=7..30); %t A285922 multinomial[n_, k_List] := n!/Times @@ (k!); %t A285922 b[n_, i_, p_] := b[n, i, p] = Series[If[n == 0 || i == 1, (p + n)!/n!*x^n, Sum[x^j*b[n - i*j, i - 1, p + j]*multinomial[n, Join[{n - i*j}, Table[i, j]]]/j!^2, {j, 0, n/i}]], {x, 0, 8}] ; %t A285922 a[n_] := Coefficient[b[n, n, 0], x, 7]; %t A285922 Table[a[n], {n, 7, 30}] (* _Jean-François Alcover_, May 17 2018, translated from Maple *) %Y A285922 Column k=7 of A285824. %Y A285922 Cf. A285858. %K A285922 nonn %O A285922 7,2 %A A285922 _Alois P. Heinz_, Apr 28 2017 # Content is available under The OEIS End-User License Agreement: http://oeis.org/LICENSE