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!)
A361901 The number of linear extensions of n fork-join DAGs of width 3. 2
1, 6, 9072, 163459296, 15205637551104, 4847253138540933120, 4144575934565485291192320, 8072771848739175726302071357440, 31871690751871005247875440218598277120, 233637150127891005003834299796206474735124480, 2970126289229822074571543766217262582458754059468800 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
The fork-join structure is a modeling structure, commonly seen for example in parallel computing, usually represented as a DAG (or poset). It has an initial "fork" vertex that spawns a number of m independent children vertices (the width) whose output edges are connected to a final "join" vertex. More generally, we can have a number n of these DAGs, each one with m+2 vertices.
When the width is 3 (i.e. m=3), these fork-join DAGs can be depicted as follows (we omit the first column for n=0 because the graph is empty in this case):
n | 1 | 2 | 3
---------------------------------------------------
| o | o o | o o o
| /|\ | /|\ /|\ | /|\ /|\ /|\
| o o o | o o o o o o | o o o o o o o o o
| \|/ | \|/ \|/ | \|/ \|/ \|/
| o | o o | o o o
LINKS
Wikipedia, Fork-join model
FORMULA
a(n) = (5n)!/20^n.
EXAMPLE
a(1) = 6 is the number of linear extensions of one fork-join DAG of width 3. Let the DAG be labeled as follows:
1
/ | \
2 3 4
\ | /
5
Then the six linear extensions are:
1 2 3 4 5
1 2 4 3 5
1 3 2 4 5
1 3 4 1 5
1 4 2 3 5
1 4 3 2 5
MATHEMATICA
a[n_] := (5n)!/20^n
Table[a[n], {n, 0, 8}]
PROG
(PARI) a(n)=(5n)!/20^n \\ Winston de Greef, Apr 16 2023
CROSSREFS
Row m=3 of A357297.
Sequence in context: A137040 A357805 A172733 * A329911 A088021 A102979
KEYWORD
nonn
AUTHOR
José E. Solsona, Mar 28 2023
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 29 00:08 EDT 2024. Contains 372097 sequences. (Running on oeis4.)