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!)
A327377 Triangle read by rows where T(n,k) is the number of labeled simple graphs covering n vertices with exactly k endpoints (vertices of degree 1). 6
1, 0, 0, 0, 0, 1, 1, 0, 3, 0, 10, 12, 12, 4, 3, 253, 260, 160, 60, 35, 0, 12068, 9150, 4230, 1440, 480, 66, 15, 1052793, 570906, 195048, 53200, 12600, 2310, 427, 0, 169505868, 63523656, 15600032, 3197040, 585620, 95088, 14056, 1016, 105 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,9
COMMENTS
A graph is covering if there are no isolated vertices.
LINKS
FORMULA
Column-wise inverse binomial transform of A327369.
E.g.f.: exp(-x)*exp(x + U(x,y) + B(x*(1-y) + R(x,y))), where R(x,y) is the e.g.f. of A055302, U(x,y) is the e.g.f. of A055314 and B(x) + x is the e.g.f. of A059167. - Andrew Howroyd, Oct 05 2019
EXAMPLE
Triangle begins:
1
0 0
0 0 1
1 0 3 0
10 12 12 4 3
253 260 160 60 35 0
12068 9150 4230 1440 480 66 15
PROG
(PARI)
Row(n)={ \\ R, U, B are e.g.f. of A055302, A055314, A059167.
my(U=sum(n=2, n, x^n*sum(k=1, n, stirling(n-2, n-k, 2)*y^k/k!)) + O(x*x^n));
my(R=sum(n=1, n, x^n*sum(k=1, n, stirling(n-1, n-k, 2)*y^k/k!)) + O(x*x^n));
my(B=x^2/2 + log(sum(k=0, n, 2^binomial(k, 2)*(x*exp(-x + O(x^n)))^k/k!)));
my(A=exp(-x + O(x*x^n))*exp(x + U + subst(B-x, x, x*(1-y) + R)));
Vecrev(n!*polcoef(A, n), n + 1);
}
{ for(n=0, 8, print(Row(n))) } \\ Andrew Howroyd, Oct 05 2019
CROSSREFS
Row sums are A006129.
Column k = 0 is A100743.
Column k = n is A123023(n + 2).
Row sums without the first column are A327227.
The non-covering version is A327369.
The unlabeled version is A327372.
Sequence in context: A028852 A319202 A327072 * A095200 A090460 A071983
KEYWORD
nonn,tabl
AUTHOR
Gus Wiseman, Sep 05 2019
EXTENSIONS
Terms a(28) and beyond from Andrew Howroyd, Oct 05 2019
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 23 16:40 EDT 2024. Contains 371916 sequences. (Running on oeis4.)