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.

A034342 Number of binary [ n,8 ] codes of dimension <= 8 without zero columns.

Original entry on oeis.org

1, 2, 4, 8, 16, 36, 80, 194, 505, 1439, 4559, 16580, 70491, 361339, 2278637, 17745061, 166540680, 1794040168, 20987476447, 254684454328, 3107605995993, 37418101305011, 439995775004885, 5025781692126252, 55627454599068011, 596148004493419480, 6186335017615750870, 62196701669630203157
Offset: 1

Views

Author

Keywords

Comments

To get the g.f. of this sequence (with a constant 1), modify the Sage program below (cf. function f). It is too complicated to write it here. - Petros Hadjicostas, Sep 30 2019

Crossrefs

Column k=8 of A076832 (starting at n=8).
Cf. A034337.

Programs

  • Sage
    # Fripertinger's method to find the g.f. of column k for small k:
    def Tcol(k, length):
        G = PSL(k, GF(2))
        D = G.cycle_index()
        f = sum(i[1]*prod(1/(1-x^j) for j in i[0]) for i in D)
        return f.taylor(x, 0, length).list()
    # For instance the Taylor expansion for column k = 8 gives a(n):
    print(Tcol(8, 30)) # Petros Hadjicostas, Sep 30 2019

Extensions

More terms from Petros Hadjicostas, Sep 30 2019