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!)
A272594 Numbers n such that the multiplicative group modulo n is the direct product of 4 cyclic groups. 9

%I #16 Dec 22 2021 11:45:09

%S 120,168,240,264,280,312,336,360,408,420,440,456,480,504,520,528,552,

%T 560,600,616,624,660,672,680,696,720,728,744,760,780,792,816,880,888,

%U 912,920,924,936,952,960,984,1008,1020,1032,1040,1056,1064,1080,1092,1104,1120,1128,1140,1144,1155,1160,1176,1200

%N Numbers n such that the multiplicative group modulo n is the direct product of 4 cyclic groups.

%C Numbers n such that A046072(n) = 4.

%t A046072[n_] := Which[n == 1 || n == 2, 1,

%t OddQ[n], PrimeNu[n],

%t EvenQ[n] && !Divisible[n, 4], PrimeNu[n] - 1,

%t Divisible[n, 4] && !Divisible[n, 8], PrimeNu[n],

%t Divisible[n, 8], PrimeNu[n] + 1];

%t Select[Range[1200], A046072[#] == 4&] (* _Jean-François Alcover_, Dec 22 2021, after _Geoffrey Critzer_ in A046072 *)

%o (PARI) for(n=1, 3*10^3, my(t=#(znstar(n)[2])); if(t==4, print1(n, ", ")));

%Y Direct product of k groups: A033948 (k=1), A272592 (k=2), A272593 (k=3), A272595 (k=5), A272596 (k=6), A272597 (k=7), A272598 (k=8), A272599 (k=9).

%K nonn

%O 1,1

%A _Joerg Arndt_, May 05 2016

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 June 27 08:47 EDT 2024. Contains 373731 sequences. (Running on oeis4.)