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!)
A289625 a(n) = prime factorization encoding of the structure of the multiplicative group of integers modulo n. 15

%I #20 Jul 18 2017 11:46:53

%S 1,1,4,4,16,4,64,36,64,16,1024,36,4096,64,144,144,65536,64,262144,144,

%T 576,1024,4194304,900,1048576,4096,262144,576,268435456,144,

%U 1073741824,2304,9216,65536,36864,576,68719476736,262144,36864,3600,1099511627776,576,4398046511104,9216,36864,4194304,70368744177664,3600,4398046511104,1048576,589824,36864

%N a(n) = prime factorization encoding of the structure of the multiplicative group of integers modulo n.

%C Here multiplicative group of integers modulo n is decomposed as a product of cyclic groups C_{k_1} x C_{k_2} x ... x C_{k_m}, where k_i divides k_j for i > j, like PARI-function znstar does. a(n) is then 2^{k_1} * 3^{k_2} * 5^{k_3} * ... * prime(m)^{k_m}.

%H Antti Karttunen, <a href="/A289625/b289625.txt">Table of n, a(n) for n = 1..1024</a>

%H The PARI group, <a href="https://pari.math.u-bordeaux.fr/dochtml/html-stable/Arithmetic_functions.html#znstar">Catalogue of GP/PARI Functions: Arithmetic functions, function znstar</a>

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/ModuloMultiplicationGroup.html">Modulo Multiplication Group.</a>

%H Wikipedia, <a href="https://en.wikipedia.org/wiki/Multiplicative_group_of_integers_modulo_n">Multiplicative group of integers modulo n</a>

%F A005361(a(n)) = A000010(n).

%F A072411(a(n)) = A002322(n).

%F A007814(a(n)) = A002322(n) for n > 2.

%F A001221(a(n)) = A046072(n) for n > 2.

%e For n=5, the multiplicative group modulo 5 is isomorphic to C_4, which does not factorize to smaller subgroups, thus a(5) = 2^4 = 16.

%e For n=8, the multiplicative group modulo 8 is isomorphic to C_2 x C_2, thus a(8) = 2^2 * 3^2 = 36.

%e For n=15, the multiplicative group modulo 15 is isomorphic to C_4 x C_2, thus a(15) = 2^4 * 3^2 = 144.

%o (PARI) A289625(n) = { my(m=1,p=2,v=znstar(n)[2]); for(i=1,length(v),m *= p^v[i]; p = nextprime(p+1)); (m); };

%Y Cf. A000010, A002322, A046072.

%Y Cf. A033948 (positions of terms that are powers of 2).

%Y Cf. A289626 (rgs-transform of this sequence).

%K nonn

%O 1,3

%A _Antti Karttunen_, Jul 17 2017

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