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!)
A322482 Table read by downward antidiagonals: T(n,k) is the greatest divisor of n which is a unitary divisor of k. 1

%I #12 Dec 18 2018 11:29:06

%S 1,1,1,1,2,1,1,1,1,1,1,1,3,2,1,1,1,1,1,1,1,1,2,1,4,1,2,1,1,1,3,1,1,3,

%T 1,1,1,1,1,2,5,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,6,1,4,3,2,1,1,1,

%U 1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,7,2,1

%N Table read by downward antidiagonals: T(n,k) is the greatest divisor of n which is a unitary divisor of k.

%C This relation was defined by Cohen in 1960.

%C The common notation for T(n,k) is (n,k)*.

%C If T(n,k) = 1 then n is said to be semi-prime to k.

%C In general T(n,k) != T(k,n).

%C The relation is used to define semi-unitary divisors (A322483).

%D J. Sandor and B. Crstici, Handbook of Number Theory, II, Springer Verlag, 2004, chapter 3.6, pp. 281.

%H Eckford Cohen, <a href="https://doi.org/10.1007/BF01180473">Arithmetical functions associated with the unitary divisors of an integer</a>, Mathematische Zeitschrift, Vol. 74, No. 1 (1960), pp. 66-80.

%H M. V. Subbarao <a href="https://doi.org/10.1007/BFb0058796">On some arithmetic convolutions</a>, The theory of arithmetic functions, Springer, Berlin, Heidelberg, 1972, pp. 247-271.

%H D. Suryanarayana and V. Siva Rama Prasad, <a href="https://doi.org/10.1017/S1446788700012908">Sum functions of k-ary and semi-k-ary divisors</a>, Journal of the Australian Mathematical Society, Vol. 15, No. 2 (1973), pp. 148-162.

%F T(1,n) = T(n,1) = 1.

%F T(n,n) = n.

%e The table starts

%e 1 1 1 1 1 1 1 1 1 1 ...

%e 1 2 1 1 1 2 1 1 1 2 ...

%e 1 1 3 1 1 3 1 1 1 1 ...

%e 1 2 1 4 1 2 1 1 1 2 ...

%e 1 1 1 1 5 1 1 1 1 5 ...

%e 1 2 3 1 1 6 1 1 1 2 ...

%e 1 1 1 1 1 1 7 1 1 1 ...

%e 1 2 1 4 1 2 1 8 1 2 ...

%e 1 1 3 1 1 3 1 1 9 1 ...

%e 1 2 1 1 5 2 1 1 1 10 ...

%e ...

%e The triangle formed by the antidiagonals starts

%e 1

%e 1 1

%e 1 2 1

%e 1 1 1 1

%e 1 1 3 2 1

%e 1 1 1 1 1 1

%e 1 2 1 4 1 2 1

%e 1 1 3 1 1 3 1 1

%e 1 1 1 2 5 1 1 2 1

%e ...

%t udiv[n_] := Select[Divisors[n], GCD[#,n/#] == 1 &]; semiuGCD[a_, b_] := Max[ Intersection[Divisors[a], udiv[b]]]; Table[semiuGCD[n, k], {n,1,20}, {k, n-1, 1, -1 }] // Flatten

%o (PARI) udivisors(n) = {my(d=divisors(n)); select(x->(gcd(x, n/x)==1), d);}

%o T(n,k) = {my(dn = divisors(n), udk = udivisors(k)); vecmax(setintersect(dn, udk));} \\ _Michel Marcus_, Dec 14 2018

%Y Cf. A050873 (gcd), A165430 (unitary gcd).

%K nonn,tabl

%O 1,5

%A _Amiram Eldar_, Dec 11 2018

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