OFFSET
1,2
COMMENTS
See A063520 for the corresponding problem in three variables.
EXAMPLE
a(7) = 7, since there are seven such solutions to wxyz = 7(w+x+y+z): (42,2,2,2), (49,4,2,1), (7,4,4,1), (10,7,2,1), (70,8,1,1), (28,10,1,1) and (16,14,1,1).
PROG
(PARI) A065015(n, d=0)={sum(x=1, sqrtn(4*n+.5, 3), sum(y=x, sqrtint(4*n\x), sum(z=max(y, n\(x*y)+1), 4*n\(x*y), (x+y+z)*n%(x*y*z-n)==0&&(x+y+z)*n>=(x*y*z-n)*z&&!(d&&print1([x, y, z, t=(x+y+z)*n/(x*y*z-n), x*y*z*t/(x+y+z+t)])))))} \\ M. F. Hasler, Aug 01 2015
CROSSREFS
KEYWORD
nonn
AUTHOR
John W. Layman, Nov 01 2001
STATUS
approved