reviewed
approved
reviewed
approved
proposed
reviewed
editing
proposed
(Python)
from sympy import npartitions
def A035363(n): return 0 if n&1 else npartitions(n>>1) # Chai Wah Wu, Sep 23 2023
approved
editing
editing
approved
# next Maple program:
a:= n-> `if`(n::odd, 0, combinat[numbpart](n/2)):
seq(a(n), n=0..84); # Alois P. Heinz, Jun 22 2021
approved
editing
proposed
approved
editing
proposed
Table[Length[Select[IntegerPartitions[n], OddQ[Times@@(#+1)]&]], {n, 0, 30}] (* Gus Wiseman, May 22 2021 *)
A000041 also counts partitions whose sum is twice their length (A340387).
A016116 counts palindromic compositions.
A087897 counts partitions into odd parts > 1 (A341449).
A338911 lists products of pairs of primes both of even index.
Cf. A000041, A000290, A087897, A100484, A110618, A209816, A210249, A233771, A339004, A340385, A340387, A340786, A341447.