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!)
A056626 Number of non-unitary square divisors of n. 7

%I #27 Sep 26 2022 05:43:45

%S 0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,2,0,0,

%T 0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,2,0,0,0,0,

%U 0,0,0,2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0

%N Number of non-unitary square divisors of n.

%H Michael De Vlieger, <a href="/A056626/b056626.txt">Table of n, a(n) for n = 1..10000</a>

%F a(n) = A046951(n) - 2^r, where r is the number of prime factors in the largest unitary prime divisor of n.

%F a(n) = A046951(n) - 2^(A162641(n)). - _David A. Corneth_, Jul 28 2017

%F From _Amiram Eldar_, Sep 26 2022: (Start)

%F a(n) = A046951(n) - A056624(n).

%F Asymptotic mean: Limit_{m->oo} (1/m) * Sum_{k=1..m} a(k) = zeta(2)*(1 - 1/zeta(3)) = 0.27650128922802056073... . (End)

%e n = p^u prime power has u+1 square divisors of which 2 (i.e., 1 and n) are unitary but u-1 are not unitary, so a[p^u] = u - 1. E.g., n = 4^4 = 256, has 5 square divisors {1, 4, 16, 64, 256} of which {4, 16, 64} are not unitary, so a(256)=3.

%t Table[DivisorSum[n, 1 &, And[IntegerQ@ Sqrt@ #, ! CoprimeQ[#, n/#]] &], {n, 105}] (* _Michael De Vlieger_, Jul 28 2017 *)

%t f1[p_, e_] := 1 + Floor[e/2]; f2[p_, e_] := 2^(1 - Mod[e, 2]); a[1] = 0; a[n_] := Times @@ f1 @@@ (fct = FactorInteger[n])- Times @@ f2 @@@ fct; Array[a, 100] (* _Amiram Eldar_, Sep 26 2022 *)

%o (PARI) a(n) = {my(f = factor(n), r=0, m = 0); prod(i=1,#f~,f[i,2]>>1 + 1) - 2^(omega(f) - omega(core(f)))} \\ _David A. Corneth_, Jul 28 2017

%o (PARI) a(n) = sumdiv(n, d, if(gcd(d, n/d)!=1, issquare(d))); \\ _Michel Marcus_, Jul 29 2017

%Y Cf. A000188, A008833, A034444, A046951, A055229, A056624, A162641.

%K nonn

%O 1,32

%A _Labos Elemer_, Aug 08 2000

%E a(32) and a(96) corrected by _Michael De Vlieger_, Jul 29 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 05:02 EDT 2024. Contains 371782 sequences. (Running on oeis4.)