%I #5 Nov 23 2020 21:51:48
%S 1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3,3,5,5,7,7,9,9,11,11,13,19,21,
%T 27,35,41,49,61,69,81,95,107,121,163,177,219,263,329,373,469,537,657,
%U 755,899,1021,1219,1485,1707,2027,2417,2881,3445,4077,4809,5735,6755,7969,9307
%N Number of compositions (ordered partitions) of n into distinct parts >= 9.
%H <a href="/index/Com#comp">Index entries for sequences related to compositions</a>
%F G.f.: Sum_{k>=0} k! * x^(k*(k + 17)/2) / Product_{j=1..k} (1 - x^j).
%e a(19) = 3 because we have [19], [10, 9] and [9, 10].
%p b:= proc(n, i, p) option remember;
%p `if`(n=0, p!, `if`((i-8)*(i+9)/2<n, 0,
%p add(b(n-i*j, i-1, p+j), j=0..min(1, n/i))))
%p end:
%p a:= n-> b(n$2, 0):
%p seq(a(n), n=0..69); # _Alois P. Heinz_, Nov 23 2020
%t nmax = 66; CoefficientList[Series[Sum[k! x^(k (k + 17)/2)/Product[1 - x^j, {j, 1, k}], {k, 0, nmax}], {x, 0, nmax}], x]
%Y Cf. A017903, A025154, A032020, A032022, A185329, A339101, A339102, A339103, A339104, A339108, A339109.
%K nonn
%O 0,20
%A _Ilya Gutkovskiy_, Nov 23 2020