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.

This page as a plain text file.
%I A006936 #20 Dec 15 2017 06:26:39
%S A006936 0,1,0,2,12,74,538,4682,47280,545832,7087186,102247562,1622632020,
%T A006936 28091567594,526858343698,10641342970366,230283190930560,
%U A006936 5315654681981354,130370767028589528,3385534663256845322
%N A006936 Moebius transform of numbers of preferential arrangements.
%C A006936 Moebius transform of A000670(n-1)=[1,1,3,13,75,...] is a(n)=[1,0,2,12,74,...]. - _Michael Somos_, Mar 04 2004
%H A006936 G. C. Greubel, <a href="/A006936/b006936.txt">Table of n, a(n) for n = 0..420</a>
%H A006936 David Feldman, <a href="/A002995/a002995_2.pdf">Counting plane trees</a>, Unpublished manuscript, 1992. (Annotated scanned copy)
%H A006936 N. J. A. Sloane, <a href="/transforms.txt">Transforms</a>
%t A006936 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 *)
%o A006936 (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)))
%Y A006936 Cf. A000670.
%K A006936 nonn
%O A006936 0,4
%A A006936 _N. J. A. Sloane_