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.

A034339 Number of binary [ n,5 ] codes of dimension <= 5 without zero columns.

Original entry on oeis.org

1, 2, 4, 8, 16, 35, 73, 161, 363, 837, 1963, 4721, 11477, 28220, 69692, 171966, 421972, 1025811, 2462143, 5821962, 13540152, 30942230, 69443492, 153038397, 331208859, 704147310, 1471172776, 3022148872, 6107363788, 12148478891, 23799499067, 45944968466, 87452845802, 164214143935
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. See the link below. - Petros Hadjicostas, Sep 30 2019

Crossrefs

Column k=5 of A076832 (starting at n=5).
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 = 5 gives a(n):
    print(Tcol(5, 30)) # Petros Hadjicostas, Sep 30 2019

Extensions

More terms from Petros Hadjicostas, Sep 30 2019