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!)
A350749 Triangle read by rows: T(n,k) is the number of oriented graphs on n labeled nodes with k arcs, n >= 0, k = 0..n*(n-1)/2. 1
1, 1, 1, 2, 1, 6, 12, 8, 1, 12, 60, 160, 240, 192, 64, 1, 20, 180, 960, 3360, 8064, 13440, 15360, 11520, 5120, 1024, 1, 30, 420, 3640, 21840, 96096, 320320, 823680, 1647360, 2562560, 3075072, 2795520, 1863680, 860160, 245760, 32768 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
Andrew Howroyd, Table of n, a(n) for n = 0..1350 (rows 0..20)
FORMULA
T(n,k) = 2^k * binomial(n*(n-1)/2, k) = A013609(n*(n-1)/2, k).
T(n,k) = [y^k] (1+2*y)^(n*(n-1)/2).
EXAMPLE
Triangle begins:
[0] 1;
[1] 1;
[2] 1, 2;
[3] 1, 6, 12, 8;
[4] 1, 12, 60, 160, 240, 192, 64;
[5] 1, 20, 180, 960, 3360, 8064, 13440, 15360, 11520, 5120, 1024;
...
PROG
(PARI) T(n, k) = 2^k * binomial(n*(n-1)/2, k)
(PARI)
row(n) = {Vecrev((1+2*y)^(n*(n-1)/2))}
{ for(n=0, 6, print(row(n))) }
CROSSREFS
Row sums are A047656.
The unlabeled version is A350733.
Cf. A013609, A350732 (weakly connected), A350731 (strongly connected).
Sequence in context: A342589 A325635 A081064 * A347594 A128534 A002562
KEYWORD
nonn,tabf
AUTHOR
Andrew Howroyd, Feb 15 2022
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 19 15:11 EDT 2024. Contains 371794 sequences. (Running on oeis4.)