login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A073091
Number of ways to express n as (x^3+y^3+z^3)/(x+y+z) 1<=x<=y<=z<=n.
0
1, 0, 0, 1, 0, 1, 0, 0, 1, 1, 2, 0, 0, 0, 0, 2, 1, 1, 1, 0, 0, 0, 0, 1, 2, 0, 1, 0, 0, 0, 2, 0, 1, 2, 0, 1, 0, 1, 0, 2, 0, 0, 1, 2, 1, 1, 0, 0, 3, 0, 2, 0, 0, 1, 0, 0, 2, 0, 0, 1, 0, 0, 0, 3, 0, 1, 2, 1, 2, 0, 1, 1, 0, 0, 0, 3, 0, 0, 2, 0, 2, 1, 1, 0, 2, 2, 0, 0, 1, 1, 0, 0, 0, 2, 0, 1, 0, 0, 3, 3
OFFSET
1,11
PROG
(PARI) a(n)=sum(x=1, n, sum(y=1, x, sum(z=1, y, if((x^3+y^3+z^3)/(x+y+z)-n, 0, 1))))
CROSSREFS
Sequence in context: A051907 A178176 A093569 * A125250 A048113 A028961
KEYWORD
easy,nonn
AUTHOR
Benoit Cloitre, Aug 18 2002
STATUS
approved