OFFSET
1,2
COMMENTS
Unordered solutions to the equation 1/n = 1/r+1/s+1/(r*s) are r=d+n, s=n*(n+1)/d+n, where d is factor of n*(n+1) not greater than n.
Number of divisors of n-th oblong number not greater than n. - Chandler
LINKS
Ray Chandler, Table of n, a(n) for n=1..10000
FORMULA
a(n) = tau(n)*tau(n+1)/2 = A092517(n)/2.
EXAMPLE
a(2)=2 because 1/2=1/3+1/8+1/24=1/4+1/5+1/20.
PROG
(PARI) a(n) = numdiv(n)*numdiv(n+1)/2 \\ Michel Marcus, Jun 17 2013
CROSSREFS
KEYWORD
nonn
AUTHOR
Vladeta Jovovic, Aug 08 2001
STATUS
approved