cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A268617 a(n) = (1/n^2) * Sum_{d|n} moebius(n/d)*binomial(3*d,d).

Original entry on oeis.org

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

Views

Author

Max Alekseyev, Feb 09 2016

Keywords

Comments

2*a(n) is divisible by n (cf. A268618).

Crossrefs

Programs

  • Mathematica
    a[n_] := DivisorSum[n, MoebiusMu[n/#] * Binomial[3*#, #] &] / n^2; Array[a, 30] (* Amiram Eldar, Aug 24 2023 *)
  • PARI
    { a(n) = sumdiv(n,d,moebius(n/d)*binomial(3*d,d))/n^2; }

Formula

a(n) = (1/n^2)* Sum_{d|n} A008683(n/d)*A005809(d).
a(n) = A060170(n) / n = A268618(n)*n/2.