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

A376021
a(n) = Sum_{d|n} d^(n/d - d) * binomial(n/d-1,d-1).
1
1, 1, 1, 2, 1, 5, 1, 13, 2, 33, 1, 90, 1, 193, 55, 450, 1, 1295, 1, 2321, 1216, 5121, 1, 16528, 2, 24577, 20413, 54529, 1, 193446, 1, 254721, 295246, 524289, 376, 2254023, 1, 2359297, 3897235, 5329176, 1, 24303263, 1, 23986177, 48404882, 46137345, 1, 274687104, 2
OFFSET
1,4
FORMULA
G.f.: Sum_{k>=1} ( x^k / (1 - k*x^k) )^k.
If p is prime, a(p) = 1.
PROG
(PARI) a(n) = sumdiv(n, d, d^(n/d-d)*binomial(n/d-1, d-1));
(PARI) my(N=50, x='x+O('x^N)); Vec(sum(k=1, N, (x^k/(1-k*x^k))^k))
(Python)
from math import comb
from itertools import takewhile
from sympy import divisors
def A376021(n): return sum(d**((m:=n//d)-d)*comb(m-1, d-1) for d in takewhile(lambda d:d**2<=n, divisors(n))) # Chai Wah Wu, Sep 06 2024
CROSSREFS
Cf. A376017.
Sequence in context: A363087 A092142 A348497 * A299161 A327249 A173108
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Sep 06 2024
STATUS
approved