login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A361590
Triangle read by rows: T(n,k) is the number of digraphs on n unlabeled nodes with exactly k strongly connected components of size 1.
3
1, 0, 1, 1, 0, 2, 5, 5, 0, 6, 90, 55, 42, 0, 31, 5289, 2451, 974, 592, 0, 302, 1071691, 323709, 94332, 29612, 15616, 0, 5984, 712342075, 135208025, 25734232, 6059018, 1650492, 795930, 0, 243668, 1585944117738, 181427072519, 21650983294, 3358042412, 704602272, 174576110, 79512478, 0, 20286025
OFFSET
0,6
EXAMPLE
Triangle begins:
1;
0, 1;
1, 0, 2;
5, 5, 0, 6;
90, 55, 42, 0, 31;
5289, 2451, 974, 592, 0, 302;
1071691, 323709, 94332, 29612, 15616, 0, 5984;
...
PROG
(PARI) \\ See PARI link in A350794 for program code.
{ my(A=A361590triang(6)); for(n=1, #A, print(A[n])) }
CROSSREFS
Column k=0 is A361586.
Main diagonal is A003087.
Row sums are A000273.
The labeled version is A361592.
Sequence in context: A075102 A209883 A326050 * A021396 A201317 A298526
KEYWORD
nonn,tabl
AUTHOR
Andrew Howroyd, Mar 16 2023
STATUS
approved