cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A056595 Number of nonsquare divisors of n.

This page as a plain text file.
%I A056595 #25 Aug 18 2024 09:15:29
%S A056595 0,1,1,1,1,3,1,2,1,3,1,4,1,3,3,2,1,4,1,4,3,3,1,6,1,3,2,4,1,7,1,3,3,3,
%T A056595 3,5,1,3,3,6,1,7,1,4,4,3,1,7,1,4,3,4,1,6,3,6,3,3,1,10,1,3,4,3,3,7,1,4,
%U A056595 3,7,1,8,1,3,4,4,3,7,1,7,2,3,1,10,3,3,3,6,1,10,3,4,3,3,3,9,1,4,4,5,1,7,1
%N A056595 Number of nonsquare divisors of n.
%C A056595 a(A000430(n))=1; a(A030078(n))=2; a(A030514(n))=2; a(A006881(n))=3; a(A050997(n))=3; a(A030516(n))=3; a(A054753(n))=4; a(A000290(n))=A055205(n). - _Reinhard Zumkeller_, Aug 15 2011
%H A056595 Reinhard Zumkeller, <a href="/A056595/b056595.txt">Table of n, a(n) for n = 1..10000</a>
%F A056595 a(n) = A000005(n) - A046951(n) = tau(n) - tau(A000188(n)).
%F A056595 Sum_{k=1..n} a(k) ~ n*log(n) + (2*gamma - zeta(2) - 1)*n, where gamma is Euler's constant (A001620). - _Amiram Eldar_, Dec 01 2023
%e A056595 a(36)=5 because the set of divisors of 36 has tau(36)=nine elements, {1, 2, 3, 4, 6, 9, 12, 18, 36}, five of which, that is {2, 3, 6, 12, 18}, are not perfect squares.
%p A056595 A056595 := proc(n)
%p A056595     local a,d ;
%p A056595     a := 0 ;
%p A056595     for d in numtheory[divisors](n) do
%p A056595         if not issqr(d) then
%p A056595             a := a+1 ;
%p A056595         end if;
%p A056595     end do:
%p A056595     a;
%p A056595 end proc:
%p A056595 seq(A056595(n),n=1..40) ; # _R. J. Mathar_, Aug 18 2024
%t A056595 Table[Count[Divisors[n],_?(#!=Floor[Sqrt[#]]^2&)],{n,110}] (* _Harvey P. Dale_, Jul 10 2013 *)
%t A056595 a[1] = 0; a[n_] := Times @@ (1 + (e = Last /@ FactorInteger[n])) - Times @@ (1 + Floor[e/2]); Array[a, 100] (* _Amiram Eldar_, Jul 22 2019 *)
%o A056595 (Haskell)
%o A056595 a056595 n = length [d | d <- [1..n], mod n d == 0, a010052 d == 0]
%o A056595 -- _Reinhard Zumkeller_, Aug 15 2011
%o A056595 (PARI) a(n)=sumdiv(n,d,!issquare(d)) \\ _Charles R Greathouse IV_, Aug 28 2016
%Y A056595 Cf. A000005, A000188, A046951.
%Y A056595 See A194095 and A194096 for record values and where they occur.
%Y A056595 Cf. A001620, A013661.
%K A056595 nonn
%O A056595 1,6
%A A056595 _Labos Elemer_, Jul 21 2000