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!)
A057741 Table T(n,k) giving number of elements of order k in dihedral group D_{2n} of order 2n, n >= 1, 1<=k<=g(n), where g(n) = 2 if n=1 else g(n) = n. 2

%I #15 Aug 31 2016 09:52:42

%S 1,1,1,3,1,3,2,1,5,0,2,1,5,0,0,4,1,7,2,0,0,2,1,7,0,0,0,0,6,1,9,0,2,0,

%T 0,0,4,1,9,2,0,0,0,0,0,6,1,11,0,0,4,0,0,0,0,4,1,11,0,0,0,0,0,0,0,0,10,

%U 1,13,2,2,0,2,0,0,0,0,0,4,1,13,0,0,0,0,0,0,0,0,0,0,12,1,15,0,0,0,0,6,0,0

%N Table T(n,k) giving number of elements of order k in dihedral group D_{2n} of order 2n, n >= 1, 1<=k<=g(n), where g(n) = 2 if n=1 else g(n) = n.

%C Note that D_2 equals the cyclic group of order 2.

%F If k<>2 and k does not divide n, this number is 0; if k<>2 and k divides n, this number is phi(k), where phi is the Euler totient function; if k=2, this number is n for odd n and n+1 for even n.

%e 1,1;

%e 1,3;

%e 1,3,2;

%e 1,5,0,2;

%e 1,5,0,0,4; ...

%t t[n_, k_] /; k != 2 && ! Divisible[n, k] = 0; t[n_, k_] /; k != 2 && Divisible[n, k] := EulerPhi[k]; t[n_, 2] := n + 1 - Mod[n, 2]; Flatten[Table[t[n, k], {n, 1, 14}, {k, 1, If[n == 1, 2, n]}]] (* _Jean-François Alcover_, Jun 19 2012, from formula *)

%t row[n_] := (orders = PermutationOrder /@ GroupElements[DihedralGroup[n]]; Table[Count[orders, k], {k, 1, Max[orders]}]); Table[row[n], {n, 1, 14}] // Flatten (* _Jean-François Alcover_, Aug 31 2016 *)

%Y Cf. A057731, A054522, A057740.

%K nonn,tabf,easy,nice

%O 1,4

%A _Roger Cuculière_, Oct 29 2000

%E More terms from _James A. Sellers_, Oct 30 2000

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 15 07:58 EDT 2024. Contains 372538 sequences. (Running on oeis4.)