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.

A034337 Number of inequivalent binary [ n,3 ] codes of dimension <= 3 without zero columns.

Original entry on oeis.org

1, 2, 4, 7, 11, 19, 29, 44, 66, 96, 136, 193, 265, 361, 485, 643, 841, 1093, 1401, 1782, 2248, 2811, 3487, 4301, 5263, 6403, 7745, 9315, 11141, 13266, 15714, 18534, 21768, 25461, 29663, 34439, 39835, 45926, 52780, 60469, 69071, 78684, 89382, 101276, 114468, 129066, 145186, 162967, 182523
Offset: 1

Views

Author

Keywords

Crossrefs

Column k=3 of A076832 (starting at n=3).
Cf. A034253.

Programs

  • SageMath
    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 = 3 gives a(n):
    print(Tcol(3, 30)) # Petros Hadjicostas, Sep 30 2019

Formula

G.f.: -(x^10 - x^8 + x^6 + x^5 + x^4 - x^2 + 1)*(x^4 - x^3 + x^2 - x + 1)/((x^6 + x^5 + x^4 + x^3 + x^2 + x + 1)*(x^2 + x + 1)^2*(x^2 + 1)*(x + 1)^2*(x - 1)^7). - Petros Hadjicostas, Sep 30 2019

Extensions

More terms by Petros Hadjicostas, Sep 30 2019