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!)
A228315 Triangular array read by rows: T(n,k) is the number of rooted labeled simple graphs on {1,2,...,n} such that the root is in a component of size k; n>=1, 1<=k<=n. 1
1, 2, 2, 6, 6, 12, 32, 24, 48, 152, 320, 160, 240, 760, 3640, 6144, 1920, 1920, 4560, 21840, 160224, 229376, 43008, 26880, 42560, 152880, 1121568, 13063792, 16777216, 1835008, 688128, 680960, 1630720, 8972544, 104510336, 2012388736 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Row sums = A095340.
Column 1 = A123903.
T(n,k) = A223894(n,k)*k.
Diagonal = A053549.
REFERENCES
F. Harary and E. M. Palmer, Graphical Enumeration, Academic Press, 1973, page 7.
LINKS
FORMULA
T(n,k) = binomial(n,k)*k*A001187(k)*A006125(n-k).
EXAMPLE
1;
2, 2;
6, 6, 12;
32, 24, 48, 152;
320, 160, 240, 760, 3640;
MAPLE
b:= proc(n) option remember; `if`(n=0, 1, 2^(n*(n-1)/2)-
add(k*binomial(n, k)* 2^((n-k)*(n-k-1)/2)*b(k), k=1..n-1)/n)
end:
T:= (n, k)-> binomial(n, k)*k*b(k)*2^((n-k)*(n-k-1)/2):
seq(seq(T(n, k), k=1..n), n=1..10); # Alois P. Heinz, Aug 26 2013
MATHEMATICA
nn = 10; g = Sum[2^Binomial[n, 2] x^n/n!, {n, 0, nn}]; a =
Drop[Range[0, nn]! CoefficientList[Series[Log[g], {x, 0, nn}], x],
1]; Table[
Table[Binomial[n, k] k a[[k]] 2^Binomial[n - k, 2], {k, 1, n}], {n,
1, 7}] // Grid
CROSSREFS
Cf. A070166.
Sequence in context: A139550 A337735 A060549 * A120690 A165124 A288302
KEYWORD
nonn,tabl
AUTHOR
Geoffrey Critzer, Aug 26 2013
STATUS
approved

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 18 06:24 EDT 2024. Contains 371769 sequences. (Running on oeis4.)