login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A058873 Number of 3-colored labeled graphs with n nodes. 5

%I #28 Aug 01 2018 15:55:07

%S 0,0,8,192,5120,192000,10938368,976453632,138258022400,31176435302400,

%T 11206367427166208,6420240819994755072,5860188449655027138560,

%U 8518797083350691185950720,19715227484913090464294371328,72618853907514273117149186752512

%N Number of 3-colored labeled graphs with n nodes.

%C A coloring of a simple graph is a choice of color for each graph vertex such that no two vertices sharing the same edge have the same color. A213442 counts those colorings of labeled graphs on n vertices that use exactly three colors. In this sequence, graph colorings that differ only by a permutation of the three colors are considered to be the same. Hence a(n) = 1/3!*A213442(n). [_Peter Bala_, Apr 12 2013]

%D F. Harary and E. M. Palmer, Graphical Enumeration, Academic Press, NY, 1973, p. 18, Table 1.5.1.

%H Robert Israel, <a href="/A058873/b058873.txt">Table of n, a(n) for n = 1..97</a>

%H R. C. Read, <a href="http://cms.math.ca/10.4153/CJM-1960-035-0">The number of k-colored graphs on labelled nodes</a>, Canad. J. Math., 12 (1960), 410-414.

%F 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

%p E:= Sum(x^n/(n!*2^(n*(n-1)/2)),n=1..infinity):

%p G:= 1/6*E^3:

%p S:= series(G,x,21):

%p seq(coeff(S,x,n)*n!*2^(n*(n-1)/2),n=1..20); # _Robert Israel_, Aug 01 2018

%t 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 *)

%o (PARI)

%o N=66; x='x+O('x^N);

%o E=sum(n=0, N, x^n/(n!*2^binomial(n,2)) );

%o tgf=(E-1)^3/6; v=concat([0,0], Vec(tgf));

%o v=vector(#v, n, v[n] * n! * 2^(n*(n-1)/2) )

%o /* _Joerg Arndt_, Apr 14 2013 */

%Y A diagonal of A058843. A213442.

%K nonn

%O 1,3

%A _N. J. A. Sloane_, Jan 07 2001

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 00:30 EDT 2024. Contains 371917 sequences. (Running on oeis4.)