login
Number of partitions of n into two sorts of parts having exactly 10 parts of the second sort.
2

%I #4 May 31 2015 12:44:50

%S 1,12,79,377,1457,4836,14289,38493,96151,225486,501180,1063635,

%T 2168132,4265393,8130869,15067991,27222865,48062380,83093629,

%U 140925603,234830485,384989926,621737584,990119455,1556378360,2416887471,3710698393,5636503638,8476224739

%N Number of partitions of n into two sorts of parts having exactly 10 parts of the second sort.

%H Alois P. Heinz, <a href="/A258480/b258480.txt">Table of n, a(n) for n = 10..1000</a>

%p b:= proc(n, i) option remember; series(`if`(n=0, 1,

%p `if`(i<1, 0, add(b(n-i*j, i-1)*add(x^t*

%p binomial(j, t), t=0..min(10, j)), j=0..n/i))), x, 11)

%p end:

%p a:= n-> coeff(b(n$2), x, 10):

%p seq(a(n), n=10..40);

%Y Column k=10 of A256193.

%K nonn

%O 10,2

%A _Alois P. Heinz_, May 31 2015