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”).

A366975
Expansion of Sum_{k >=1} x^(3*k)/(1-x^k)^(k+1).
1
0, 0, 1, 2, 3, 5, 5, 9, 8, 14, 9, 25, 11, 27, 24, 40, 15, 65, 17, 75, 55, 65, 21, 176, 44, 90, 110, 182, 27, 324, 29, 270, 197, 152, 195, 695, 35, 189, 324, 847, 39, 925, 41, 759, 1016, 275, 45, 2215, 377, 1182, 730, 1365, 51, 2338, 1418, 3072, 1025, 434, 57, 7536, 59
OFFSET
1,4
FORMULA
a(n) = Sum_{d|n} binomial(d+n/d-3,d) for n > 1.
If p is prime, a(p) = p - 2.
PROG
(PARI) a(n) = if(n<2, 0, sumdiv(n, d, binomial(d+n/d-3, d)));
CROSSREFS
Cf. A318636.
Sequence in context: A096736 A128188 A318636 * A267582 A360072 A139127
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Oct 30 2023
STATUS
approved