Python beginner, running 2.7
I would like to define a function in Python, say N(d), recursively; with the following property: It sums the products a*b*N(a)N(b), for a and b integers greater than or equal to 0, and a + b = d, d is the variable. thanks.
Added
N(1)=N(2)=1