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.

A289537 Triangle read by rows: T(n,k) is the number of k-dimensional subspaces of an n-dimensional vector space over F_2 that do not contain a given nonzero vector, n>=0, 0<=k<=n.

Original entry on oeis.org

1, 1, 0, 1, 2, 0, 1, 6, 4, 0, 1, 14, 28, 8, 0, 1, 30, 140, 120, 16, 0, 1, 62, 620, 1240, 496, 32, 0, 1, 126, 2604, 11160, 10416, 2016, 64, 0, 1, 254, 10668, 94488, 188976, 85344, 8128, 128, 0, 1, 510, 43180, 777240, 3212592, 3108960, 690880, 32640, 256, 0
Offset: 0

Views

Author

Geoffrey Critzer, Jul 07 2017

Keywords

Examples

			Triangle begins:
  1;
  1,    0;
  1,    2,    0;
  1,    6,    4,    0;
  1,   14,   28,    8,    0;
  1,   30,  140,  120,   16,    0;
  1,   62,  620, 1240,  496,   32,    0;
		

Crossrefs

Programs

  • Mathematica
    Table[Table[Product[q^n - q^i, {i, 1, k}]/Product[q^k - q^i, {i, 0, k - 1}] /. q -> 2, {k, 0, n}], {n, 0, 9}] // Grid

Formula

T(n,k) = 2^k * A022166(n-1,k).