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.

A006936 Moebius transform of numbers of preferential arrangements.

Original entry on oeis.org

0, 1, 0, 2, 12, 74, 538, 4682, 47280, 545832, 7087186, 102247562, 1622632020, 28091567594, 526858343698, 10641342970366, 230283190930560, 5315654681981354, 130370767028589528, 3385534663256845322
Offset: 0

Views

Author

Keywords

Comments

Moebius transform of A000670(n-1)=[1,1,3,13,75,...] is a(n)=[1,0,2,12,74,...]. - Michael Somos, Mar 04 2004

Crossrefs

Cf. A000670.

Programs

  • Mathematica
    a[n_] := DivisorSum[n, MoebiusMu[n/#]*(#-1)!*SeriesCoefficient[1/(2-Exp[x + O[x]^#]), #-1]&]; a[0]=0; Table[a[n], {n, 0, 20}] (* Jean-François Alcover, Dec 03 2015, adapted from PARI *)
  • PARI
    a(n)=if(n<1,0,sumdiv(n,d,moebius(n/d)*(d-1)!*polcoeff(1/(2-exp(x+O(x^d))),d-1)))