The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A034338 Number of binary [ n,4 ] codes of dimension <= 4 without zero columns. 3
1, 2, 4, 8, 15, 30, 56, 107, 200, 372, 680, 1241, 2221, 3938, 6880, 11860, 20148, 33778, 55814, 91007, 146392, 232458, 364462, 564560, 864230, 1308160, 1958700, 2902417, 4258009, 6187350, 8908680, 12714829, 17994860, 25262928, 35193094, 48664341, 66814595, 91109910, 123426848, 166156091 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
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
LINKS
Discrete algorithms at the University of Bayreuth, Symmetrica. [This package was used by Harald Fripertinger to compute T_{nk2} = A076832(n,k) using the cycle index of PGL_k(2). Here k = 4. That is, a(n) = T_{n,4,2} = A076832(n,4), but we start at n = 1 rather than at n = 4.]
Harald Fripertinger, Isometry Classes of Codes.
Harald Fripertinger, Tnk2: Number of the isometry classes of all binary (n,r)-codes for 1 <= r <= k without zero-columns. [This is a rectangular array whose lower triangle is A076832(n,k). Here we have column k = 4.]
Harald Fripertinger, Enumeration of isometry classes of linear (n,k)-codes over GF(q) in SYMMETRICA, Bayreuther Mathematische Schriften 49 (1995), 215-223. [See pp. 216-218. A C-program is given for calculating T_{nk2} in Symmetrica. Here k = 4.]
Harald Fripertinger, Cycle of indices of linear, affine, and projective groups, Linear Algebra and its Applications 263 (1997), 133-156. [See p. 152 for the computation of T_{nk2} = A076832(n,k). Here k = 4.]
H. Fripertinger and A. Kerber, Isometry classes of indecomposable linear codes. In: G. Cohen, M. Giusti, T. Mora (eds), Applied Algebra, Algebraic Algorithms and Error-Correcting Codes, 11th International Symposium, AAECC 1995, Lect. Notes Comp. Sci. 948 (1995), pp. 194-204. [The notation for A076832(n,k) is T_{nk2}. Here k = 4.]
Petros Hadjicostas, Generating function for a(n).
David Slepian, Some further theory of group codes, Bell System Tech. J. 39(5) (1960), 1219-1252.
David Slepian, Some further theory of group codes, Bell System Tech. J. 39(5) (1960), 1219-1252.
Wikipedia, Cycle index.
PROG
(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 = 4 gives a(n):
print(Tcol(4, 30)) # Petros Hadjicostas, Sep 30 2019
CROSSREFS
Column k=4 of A076832 (starting at n=4).
Cf. A034337.
Sequence in context: A344687 A301480 A217777 * A166861 A026023 A077596
KEYWORD
nonn
AUTHOR
EXTENSIONS
More terms from Petros Hadjicostas, Sep 30 2019
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 14 07:35 EDT 2024. Contains 372530 sequences. (Running on oeis4.)