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!)
A083402 Let A_n be the upper triangular matrix in the group GL(n,2) that has zero entries below the main diagonal and 1 elsewhere; a(n) is the size of the conjugacy class of this matrix in GL(n,2). 5

%I #9 Feb 17 2014 06:02:48

%S 1,3,42,2520,624960,629959680,2560156139520,41781748196966400,

%T 2732860586067178291200,715703393163961188325785600,

%U 750102961052993818881476159078400,3145391744524297920839316348340273152000,52764474940208177704130232748554603290689536000

%N Let A_n be the upper triangular matrix in the group GL(n,2) that has zero entries below the main diagonal and 1 elsewhere; a(n) is the size of the conjugacy class of this matrix in GL(n,2).

%H Eric M. Schmidt, <a href="/A083402/b083402.txt">Table of n, a(n) for n = 1..30</a>

%F a(n) = A002884(n) / 2^(n-1).

%e For example for n=4 the matrix is / 1,1,1,1 / 0,1,1,1 / 0,0,1,1 / 0,0,0,1 /.

%p a:= n-> 2^((n-1)*(n-2)/2) *mul(2^k-1, k=1..n):

%p seq(a(n), n=1..15); # _Alois P. Heinz_, May 14 2013

%t a[n_] := 2^((n-1)*(n-2)/2)*Product[2^k-1, {k, 1, n}]; Table[a[n], {n, 1, 15}] (* _Jean-François Alcover_, Feb 17 2014, after _Alois P. Heinz_ *)

%Y Cf. A002884, A070731, A082877, A062383.

%K nonn

%O 1,2

%A Yuval Dekel (dekelyuval(AT)hotmail.com), Jun 12 2003

%E More terms from _Eric M. Schmidt_, May 14 2013

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 25 10:22 EDT 2024. Contains 371967 sequences. (Running on oeis4.)