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

A268619
a(n) = (1/n^2) * Sum_{d|n} moebius(n/d)*binomial(2*d,d).
6
2, 1, 2, 4, 10, 25, 70, 200, 600, 1845, 5830, 18772, 61542, 204659, 689410, 2347920, 8074762, 28009524, 97909318, 344615860, 1220539390, 4347310451, 15564141262, 55985418344, 202256970300, 733607281875, 2670698800548, 9755982857964, 35751803209918, 131405090455065, 484316704740126, 1789672012052256
OFFSET
1,1
COMMENTS
6*a(n) is divisible by n (cf. A268592).
FORMULA
a(n) = (1/n^2)* Sum_{d|n} A008683(n/d)*A000984(d).
a(n) = A007727(n)/n^2 = A045630(n)*2/n^2 = A060165(n)/n = A022553(n)*2/n.
MATHEMATICA
a[n_] := DivisorSum[n, MoebiusMu[n/#] * Binomial[2*#, #] &] / n^2; Array[a, 35] (* Amiram Eldar, Aug 24 2023 *)
PROG
(PARI) { a(n) = sumdiv(n, d, moebius(n/d)*binomial(2*d, d))/n^2; }
KEYWORD
nonn
AUTHOR
Max Alekseyev, Feb 09 2016
STATUS
approved