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

A268617
a(n) = (1/n^2) * Sum_{d|n} moebius(n/d)*binomial(3*d,d).
3
3, 3, 9, 30, 120, 513, 2373, 11484, 57861, 300420, 1599477, 8692074, 48061689, 269694453, 1532744100, 8808000696, 51110965698, 299155382325, 1764498529977, 10479611189400, 62629105220514, 376411503694677, 2273982941083533, 13802537605619124, 84141675425838225, 514987312014416553, 3163620641291970255
OFFSET
1,1
COMMENTS
2*a(n) is divisible by n (cf. A268618).
FORMULA
a(n) = (1/n^2)* Sum_{d|n} A008683(n/d)*A005809(d).
a(n) = A060170(n) / n = A268618(n)*n/2.
MATHEMATICA
a[n_] := DivisorSum[n, MoebiusMu[n/#] * Binomial[3*#, #] &] / n^2; Array[a, 30] (* Amiram Eldar, Aug 24 2023 *)
PROG
(PARI) { a(n) = sumdiv(n, d, moebius(n/d)*binomial(3*d, d))/n^2; }
CROSSREFS
KEYWORD
nonn
AUTHOR
Max Alekseyev, Feb 09 2016
STATUS
approved