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!)
A135021 Triangle read by rows: T(n,r) = number of maximum r-uniform acyclic hypergraphs of order n and size n-r+1, 1 <= r <= n+1. 6
1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 16, 6, 1, 1, 1, 125, 70, 10, 1, 1, 1, 1296, 1215, 200, 15, 1, 1, 1, 16807, 27951, 5915, 455, 21, 1, 1, 1, 262144, 799708, 229376, 20230, 896, 28, 1, 1, 1, 4782969, 27337500, 10946964, 1166886, 55566, 1596, 36, 1, 1, 1, 100000000, 1086190605, 618435840, 82031250, 4429152, 131250, 2640, 45, 1, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,8
COMMENTS
T(n,r) is the number of (r-1)-trees on n nodes. - Andrew Howroyd, Mar 02 2024
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..1325 (rows 0..50)
L. W. Beineke and R. E. Pipert, The number of labeled k-dimensional trees, J. Comb. Theory 6 (2) (1969) 200-205, formula (1).
Jian-fang Wang and Hai-zhu Li, Enumeration of Maximum Acyclic Hypergraphs, Acta Mathematicae Applicatae Sinica, English Series, 2002 vol.18 number 2, page 215. [Broken link]
FORMULA
T(n,r) = binomial(n,r-1)*(n*(r-1)-r^2+2*r)^(n-r-1).
EXAMPLE
From Bruno Berselli, Dec 08 2012: (Start)
Triangle begins:
1;
1, 1;
1, 1, 1;
1, 3, 1, 1;
1, 16, 6, 1, 1;
1, 125, 70, 10, 1, 1;
1, 1296, 1215, 200, 15, 1, 1;
1, 16807, 27951, 5915, 455, 21, 1, 1;
1, 262144, 799708, 229376, 20230, 896, 28, 1, 1;
1, 4782969, 27337500, 10946964, 1166886, 55566, 1596, 36, 1, 1;
(End)
MAPLE
seq(seq(binomial(n, r-1)*(n*(r-1)-r^2+2*r)^(n-r-1), r=1..n), n=1..11);
MATHEMATICA
T[n_, r_] := Binomial[n, r - 1]*(n (r - 1) - r^2 + 2 r)^(n - r - 1);
Table[T[n, r], {n, 1, 5}, {r, 1, n}] (* G. C. Greubel, Sep 16 2016 *)
PROG
(PARI) T(n, r) = binomial(n, r-1)*(n*(r-1)-r^2+2*r)^(n-r-1) \\ Andrew Howroyd, Mar 02 2024
CROSSREFS
Columns 1..5 are A000012, A000272, A036361, A036362, A036506.
Cf. A370770 (unlabeled version).
Sequence in context: A284578 A070989 A274741 * A347811 A320412 A286591
KEYWORD
easy,nonn,tabl
AUTHOR
John Nnamdi (john_info_2008(AT)bbvczx.com), Feb 10 2008
EXTENSIONS
Diagonal r=n+1 inserted by Andrew Howroyd, Mar 02 2024
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 05:19 EDT 2024. Contains 371782 sequences. (Running on oeis4.)