%I #9 Feb 16 2017 02:30:52
%S 1,2,5,11,23,44,82,146,252,423,695,1116,1763,2738,4192,6334,9459,
%T 13968,20425,29588,42496,60547,85628,120246,167762,232605,320635,
%U 439544,599412,813360,1098480,1476870,1977087,2635869,3500382,4630932,6104533,8019131,10499093
%N Number of partitions of 2*n-1 into parts not greater than n.
%C Central terms of the triangle in A026820: a(n)=A026820(2*n-1,n).
%H Alois P. Heinz, <a href="/A171985/b171985.txt">Table of n, a(n) for n = 1..1000</a>
%e a(4) = (partitions of 7 into parts <= 4) = #{4+3, 4+2+1, 4+1+1+1, 3+3+1, 3+2+2, 3+2+1+1, 3+1+1+1+1, 2+2+2+1, 2+2+1+1+1, 2+1+1+1+1+1, 1+1+1+1+1+1+1} = 11.
%p g:= proc(n, i) option remember;
%p `if`(n=0, 1, `if`(i>1, g(n, i-1), 0)+`if`(i>n, 0, g(n-i, i)))
%p end:
%p a:= n-> g(2*n-1, n):
%p seq (a(n), n=1..40); # _Alois P. Heinz_, Jul 18 2012
%t g[n_, i_] := g[n, i] = If[n==0, 1, If[i>1, g[n, i-1], 0]+If[i>n, 0, g[n-i, i]]]; a[n_] := g[2*n-1, n]; Table[a[n], {n, 1, 40}] (* _Jean-François Alcover_, Feb 16 2017, after _Alois P. Heinz_ *)
%K nonn
%O 1,2
%A _Reinhard Zumkeller_, Jan 21 2010