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

%I #13 Dec 22 2021 11:44:46

%S 2042040,2282280,2762760,2984520,3483480,3527160,3612840,3723720,

%T 4037880,4084080,4269720,4444440,4555320,4564560,4772040,4869480,

%U 4924920,5091240,5165160,5383560,5442360,5525520,5542680,5645640,5754840,5811960,5969040,6016920,6126120,6163080,6240360,6366360,6431880,6440280

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

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

%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[120, 120*10^5, 120], A046072[#] == 8&] (* _Jean-François Alcover_, Dec 22 2021, after _Geoffrey Critzer_ in A046072 *)

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

%Y Direct product of k groups: A033948 (k=1), A272592 (k=2), A272593 (k=3), A272594 (k=4), A272595 (k=5), A272596 (k=6), A272597 (k=7), 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 August 16 14:11 EDT 2024. Contains 375174 sequences. (Running on oeis4.)