cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A163353 G.f.: A(x,y) = Sum_{n>=0,m>=0} (2^m-1)^n*x^n * log(1+y)^m/m!.

Original entry on oeis.org

1, 1, 0, 1, 1, 0, 1, 4, 4, 1, 0, 1, 13, 44, 67, 56, 28, 8, 1, 0, 1, 40, 360, 1546, 4144, 7896, 11408, 12866, 11440, 8008, 4368, 1820, 560, 120, 16, 1, 0, 1, 121, 2680, 27550, 180096, 866432, 3308736, 10453960, 27991600, 64472200, 129002640, 225783740, 347370800, 471435000, 565722640, 601080385, 565722720, 471435600, 347373600
Offset: 0

Views

Author

Paul D. Hanna, Jul 25 2009

Keywords

Comments

From Manfred Boergens, Apr 07 2025: (Start)
T(n,k) is the number of collections of k [n]-subsets with union=[n]; with [0] = {}.
For n > 0: If more than half of the subsets are drawn their union covers [n] (see Formula). - The proof is based on 2^(n-1) being the number of subsets of [n] with one fixed element of [n] missing.
For collections of nonempty subsets see A055154.
For disjoint collections of subsets see A256894.
For disjoint collections of nonempty subsets see A008277. (End)

Examples

			Triangle begins:
  1,1;
  0,1,1;
  0,1,4,4,1;
  0,1,13,44,67,56,28,8,1;
  0,1,40,360,1546,4144,7896,11408,12866,11440,8008,4368,1820,560,120,16,1;
  ...
		

Crossrefs

Cf. A000371 (row sums), A381683 (partial row sums), A134174 (main diagonal).

Programs

  • Mathematica
    Table[Sum[(-1)^(n - j)*Binomial[n, j]*Binomial[2^j, k], {j, 0,
       n}], {n, 0, 5}, {k, 0, 2^n}]//Flatten (* G. C. Greubel, Dec 19 2016 *)
  • PARI
    T(n,k)=sum(j=0,n,(-1)^(n-j)*binomial(n,j)*binomial(2^j,k))

Formula

T(n,k) = Sum_{j=0..n} (-1)^(n-j)*C(n,j)*C(2^j,k), k=0..2^n.
Row sums form A000371 (nondegenerate Boolean functions of n variables).
Main diagonal equals A134174 and is defined by the g.f.:
Sum_{n>=0} log(1 + (2^n-1)*x)^n/n!.
From Manfred Boergens, Apr 11 2024: (Start)
T(n,k) = A055154(n,k) + A055154(n,k-1) for n > 0, k > 0; A055154(n,j) are not defined for j = 0 and j = 2^n and are set = 0.
T(n,k) = C(2^n,k) for k > 2^(n-1).
T(n,k) < C(2^n,k) for k <= 2^(n-1), n > 0.
(Note: C(2^n,k) is the number of all k-subsets of P([n]).) (End)