OFFSET
0,3
COMMENTS
Essentially this is a bisection (even part) of A138135.
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..1000
MAPLE
b:= proc(n, i) option remember; local p, q;
if n<0 then [0, 0]
elif n=0 then [1, 0]
elif i=1 then [0, 0]
else p, q:= b(n, i-1), b(n-i, i);
[p[1]+q[1], p[2]+q[2]+q[1]]
fi
end:
a:= n-> b(2*n, 2*n)[2]:
seq(a(n), n=0..35); # Alois P. Heinz, Dec 03 2010
MATHEMATICA
Table[Length[Flatten[DeleteCases[IntegerPartitions[2n], _?(MemberQ[ #, 1]&)]]], {n, 0, 40}] (* Harvey P. Dale, Aug 08 2013 *)
b[n_] := DivisorSigma[0, n]-1+Sum[(DivisorSigma[0, k]-1)*(PartitionsP[n-k] - PartitionsP[n-k-1]), {k, 1, n-1}]; a[0] = 0; a[n_] := b[2n]; Table[a[n], {n, 0, 35}] (* Jean-François Alcover, Oct 07 2015 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Omar E. Pol, Dec 03 2010
EXTENSIONS
More terms from Alois P. Heinz, Dec 03 2010
STATUS
approved