login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A058843 Triangle T(n,k) = C_n(k) where C_n(k) = number of k-colored labeled graphs with n nodes (n >= 1, 1<=k<=n). 8
1, 1, 2, 1, 12, 8, 1, 80, 192, 64, 1, 720, 5120, 5120, 1024, 1, 9152, 192000, 450560, 245760, 32768, 1, 165312, 10938368, 56197120, 64225280, 22020096, 2097152, 1, 4244480, 976453632, 10877927424, 23781703680, 15971909632, 3758096384 (list; table; graph; refs; listen; history; internal format)
OFFSET

1,3

REFERENCES

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

FORMULA

C_n(k) = Sum_{i=1..n-1} binomial(n, i)*2^(i*(n-i))*C_i(k-1)/k.

EXAMPLE

1; 1,2; 1,12,8; 1,80,192,64; ...

MAPLE

for p from 1 to 20 do C[p, 1] := 1; od: for k from 2 to 20 do for p from 1 to k-1 do C[p, k] := 0; od: od: for k from 2 to 10 do for p from k to 10 do C[p, k] := add( binomial(p, n)*2^(n*(p-n))*C[n, k-1]/k, n=1..p-1); od: od:

MATHEMATICA

maxn = 8; t[_, 1] = 1; t[n_, k_] := t[n, k] = Sum[ Binomial[n, j]*2^(j*(n - j))*t[j, k - 1]/k, {j, 1, n - 1}]; Flatten[ Table[t[n, k], {n, 1, maxn}, {k, 1, n}]] (* From Jean-François Alcover, Sep 21 2011 *)

CROSSREFS

Apart from scaling, same as A058875. Columns give A058872 and A000683, A058873 and A006201, A058874 and A006202, also A006218.

Sequence in context: A085752 A074966 A128413 * A130559 A135256 A090586

Adjacent sequences:  A058840 A058841 A058842 * A058844 A058845 A058846

KEYWORD

nonn,easy,tabl

AUTHOR

N. J. A. Sloane (njas(AT)research.att.com), Jan 07 2001

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 15 21:56 EST 2012. Contains 205860 sequences.