The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A299471 Regular triangle where T(n,k) is the number of labeled k-uniform hypergraphs spanning n vertices. 17
1, 1, 1, 1, 4, 1, 1, 41, 11, 1, 1, 768, 958, 26, 1, 1, 27449, 1042642, 32596, 57, 1, 1, 1887284, 34352419335, 34359509614, 2096731, 120, 1, 1, 252522481, 72057319189324805, 1180591620442534312297, 72057594021152435, 268434467, 247, 1, 1, 66376424160 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,5
LINKS
Andrew Howroyd, Table of n, a(n) for n = 1..91 (rows 1..13)
Wikipedia, Hypergraph
FORMULA
T(n, k) = Sum_{d = 0..n} (-1)^(n-d)*binomial(n,d)*2^binomial(d,k).
EXAMPLE
Triangle begins:
1;
1, 1;
1, 4, 1;
1, 41, 11, 1;
1, 768, 958, 26, 1;
1, 27449, 1042642, 32596, 57, 1;
...
MATHEMATICA
Table[Sum[(-1)^(n-d)*Binomial[n, d]*2^Binomial[d, k], {d, 0, n}], {n, 10}, {k, n}]
PROG
(PARI) T(n, k) = sum(d = 0, n, (-1)^(n-d)*binomial(n, d)*2^binomial(d, k)) \\ Andrew Howroyd, Jan 16 2024
CROSSREFS
Columns 1..4 are A000012, A006129, A302374, A302396.
Row sums are A306021.
The unlabeled version is A301922.
The connected version is A299354.
Sequence in context: A158390 A228836 A176419 * A102602 A156951 A357052
KEYWORD
nonn,tabl
AUTHOR
Gus Wiseman, Jun 18 2018
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 May 14 03:59 EDT 2024. Contains 372528 sequences. (Running on oeis4.)