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!)
A034339 Number of binary [ n,5 ] codes of dimension <= 5 without zero columns. 3

%I #48 Oct 02 2019 05:15:52

%S 1,2,4,8,16,35,73,161,363,837,1963,4721,11477,28220,69692,171966,

%T 421972,1025811,2462143,5821962,13540152,30942230,69443492,153038397,

%U 331208859,704147310,1471172776,3022148872,6107363788,12148478891,23799499067,45944968466,87452845802,164214143935

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

%C 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

%H Discrete algorithms at the University of Bayreuth, <a href="http://www.algorithm.uni-bayreuth.de/en/research/SYMMETRICA/">Symmetrica</a>. [This package was used by Harald Fripertinger to compute T_{nk2} = A076832(n,k) using the cycle index of PGL_k(2). Here k = 5. That is, a(n) = T_{n,5,2} = A076832(n,5), but we start at n = 1 rather than at n = 5.]

%H Harald Fripertinger, <a href="http://www.mathe2.uni-bayreuth.de/frib/codes/tables.html">Isometry Classes of Codes</a>.

%H Harald Fripertinger, <a href="http://www.mathe2.uni-bayreuth.de/frib/codes/tables_3.html">Tnk2: Number of the isometry classes of all binary (n,r)-codes for 1 <= r <= k without zero-columns</a>. [This is a rectangular array whose lower triangle is A076832(n,k). Here we have column k = 5.]

%H Harald Fripertinger, <a href="https://imsc.uni-graz.at/fripertinger/codes_bms.html">Enumeration of isometry classes of linear (n,k)-codes over GF(q) in SYMMETRICA</a>, Bayreuther Mathematische Schriften 49 (1995), 215-223. [See pp. 216-218. A C-program is given for calculating T_{nk2} in Symmetrica. Here k = 5.]

%H Harald Fripertinger, <a href="https://doi.org/10.1016/S0024-3795(96)00530-7">Cycle of indices of linear, affine, and projective groups</a>, Linear Algebra and its Applications 263 (1997), 133-156. [See p. 152 for the computation of T_{nk2} = A076832(n,k). Here k = 5.]

%H H. Fripertinger and A. Kerber, <a href="https://doi.org/10.1007/3-540-60114-7_15">Isometry classes of indecomposable linear codes</a>. 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 = 5.]

%H Petros Hadjicostas, <a href="/A034339/a034339.txt">Generating function for a(n)</a>.

%H David Slepian, <a href="https://archive.org/details/bstj39-5-1219">Some further theory of group codes</a>, Bell System Tech. J. 39(5) (1960), 1219-1252.

%H David Slepian, <a href="https://doi.org/10.1002/j.1538-7305.1960.tb03958.x">Some further theory of group codes</a>, Bell System Tech. J. 39(5) (1960), 1219-1252.

%H Wikipedia, <a href="https://en.wikipedia.org/wiki/Cycle_index">Cycle index</a>.

%H Wikipedia, <a href="https://en.wikipedia.org/wiki/Projective_linear_group">Projective linear group</a>.

%o (Sage) # Fripertinger's method to find the g.f. of column k for small k:

%o def Tcol(k, length):

%o G = PSL(k, GF(2))

%o D = G.cycle_index()

%o f = sum(i[1]*prod(1/(1-x^j) for j in i[0]) for i in D)

%o return f.taylor(x, 0, length).list()

%o # For instance the Taylor expansion for column k = 5 gives a(n):

%o print(Tcol(5, 30)) # _Petros Hadjicostas_, Sep 30 2019

%Y Column k=5 of A076832 (starting at n=5).

%Y Cf. A034337.

%K nonn

%O 1,2

%A _N. J. A. Sloane_.

%E More terms from _Petros Hadjicostas_, Sep 30 2019

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 April 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)