A058873 Number of 3-colored labeled graphs with n nodes.
0, 0, 8, 192, 5120, 192000, 10938368, 976453632, 138258022400, 31176435302400, 11206367427166208, 6420240819994755072, 5860188449655027138560, 8518797083350691185950720, 19715227484913090464294371328, 72618853907514273117149186752512
Offset: 1
Keywords
References
- F. Harary and E. M. Palmer, Graphical Enumeration, Academic Press, NY, 1973, p. 18, Table 1.5.1.
Links
- Robert Israel, Table of n, a(n) for n = 1..97
- R. C. Read, The number of k-colored graphs on labelled nodes, Canad. J. Math., 12 (1960), 410-414.
Programs
-
Maple
E:= Sum(x^n/(n!*2^(n*(n-1)/2)),n=1..infinity): G:= 1/6*E^3: S:= series(G,x,21): seq(coeff(S,x,n)*n!*2^(n*(n-1)/2),n=1..20); # Robert Israel, Aug 01 2018
-
Mathematica
f[list_] := (Apply[Multinomial, list] * 2^((Total[list]^2-Total[Table[list[[i]]^2, {i, 1, Length[list]}]])/2))/3!; Table[Total[Map[f, Select[Compositions[n, 3], Count[#, 0]==0&]]], {n, 1, 20}] (* Geoffrey Critzer, Oct 24 2011 *)
-
PARI
N=66; x='x+O('x^N); E=sum(n=0, N, x^n/(n!*2^binomial(n,2)) ); tgf=(E-1)^3/6; v=concat([0,0], Vec(tgf)); v=vector(#v, n, v[n] * n! * 2^(n*(n-1)/2) ) /* Joerg Arndt, Apr 14 2013 */
Formula
Let E(x) = sum {n >= 0} x^n/(n!*2^C(n,2)) = 1 + x + x^2/(2!*2) + x^3/(3!*2^3) + x^4/(4!*2^6) + .... Then a generating function is 1/6*(E(x) - 1)^3 = 8*x^3/(3!*2^3) + 192*x^4/(4!*2^6) + 5120*x^5/(5!*2^10) + ... (see Read). - Peter Bala, Apr 13 2013
Comments