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.

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

Original entry on oeis.org

6, 3, 6, 15, 48, 171, 678, 2871, 12858, 60084, 290814, 1448679, 7394106, 38527779, 204365880, 1101000087, 6013054788, 33239486925, 185736687366, 1047961118940, 5964676687668, 34219227608607, 197737647050742, 1150211467134927, 6731334034067058, 39614408616493581, 234342269725331130, 1392933275876114127
Offset: 1

Views

Author

Max Alekseyev, Feb 09 2016

Keywords

Crossrefs

Programs

  • Mathematica
    a[n_] := (2/n^3)* DivisorSum[n, MoebiusMu[n/#] Binomial[3 #, #] &]; Array[a, 50] (* G. C. Greubel, Dec 15 2017 *)
  • PARI
    { a(n) = sumdiv(n, d, moebius(n/d)*binomial(3*d, d))*2/n^3; }

Formula

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