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.

A054367 Number of unlabeled asymmetric 6-ary cacti having n polygons.

Original entry on oeis.org

1, 1, 0, 15, 110, 1095, 10326, 107056, 1149126, 12845166, 147817170, 1743640902, 20987930112, 256987965373, 3192889862238, 40171643818920, 510996955110550, 6563060603543652, 85017386945583408, 1109744672540225361, 14585261031466256370, 192882251992018723947
Offset: 0

Views

Author

Keywords

Crossrefs

Column k=6 of A303913.

Programs

  • Mathematica
    a[0] = 1;
    a[n_] := DivisorSum[n, MoebiusMu[n/#] Binomial[6#, #]&]/n - 5 Binomial[6n, n]/(5n + 1);
    Table[a[n], {n, 0, 22}] (* Jean-François Alcover, Jul 01 2018, after Andrew Howroyd *)
  • PARI
    a(n) = if(n==0, 1, sumdiv(n, d, moebius(n/d)*binomial(6*d, d))/n - 5*binomial(6*n, n)/(5*n+1)) \\ Andrew Howroyd, May 02 2018

Formula

a(n) = (1/n)*(Sum_{d|n} mu(n/d)*binomial(6*d, d)) - 5*binomial(6*n, n)/(5*n+1) for n > 0. - Andrew Howroyd, May 02 2018

Extensions

Terms a(11) and beyond from Andrew Howroyd, May 02 2018