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!)
A181796 a(n) = number of divisors of n whose canonical prime factorizations contain no repeated positive exponents (cf. A130091). 74

%I #36 Feb 12 2023 14:42:03

%S 1,2,2,3,2,3,2,4,3,3,2,5,2,3,3,5,2,5,2,5,3,3,2,7,3,3,4,5,2,4,2,6,3,3,

%T 3,7,2,3,3,7,2,4,2,5,5,3,2,9,3,5,3,5,2,7,3,7,3,3,2,7,2,3,5,7,3,4,2,5,

%U 3,4,2,10,2,3,5,5,3,4,2,9,5,3,2,7,3,3,3,7,2,7,3,5,3,3,3,11,2,5,5,7,2,4,2,7,4

%N a(n) = number of divisors of n whose canonical prime factorizations contain no repeated positive exponents (cf. A130091).

%C The canonical factorization of n into prime powers can be written as Product p(i)^e(i), for example. A host of equivalent notations can also be used (for another example, see Weisstein link). a(n) depends only on prime signature of n (cf. A025487).

%C a(n) >= A085082(n). (A085082(n) equals the number of members of A025487 that divide A046523(n), and each member of A025487 is divisible by at least one member of A130091 that divides no smaller member of A025487.) a(n) > A085082(n) iff n has in its canonical prime factorization at least two exponents greater than 1.

%C a(n) = number of such divisors of n that in their prime factorization all exponents are unique. - _Antti Karttunen_, May 27 2017

%C First differs from A335549 at a(90) = 7, A335549(90) = 8. First differs from A335516 at a(180) = 9, A335516(180) = 10. - _Gus Wiseman_, Jun 28 2020

%H Antti Karttunen, <a href="/A181796/b181796.txt">Table of n, a(n) for n = 1..10000</a>

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/PrimeFactorization.html">Prime Factorization</a>.

%H Gus Wiseman, <a href="https://docs.google.com/document/d/e/2PACX-1vSX9dPMGJhxB8rOknCGvOs6PiyhupdWNpqLsnphdgU6MEVqFBnWugAXidDhwHeKqZe_YnUqYeGOXsOk/pub">Sequences counting and encoding certain classes of multisets</a>

%F a(A000079(n)) = a(A002110(n)) = n+1.

%F a(A006939(n)) = A000110(n+1).

%F a(A181555(n)) = A002720(n).

%e 12 has a total of six divisors (1, 2, 3, 4, 6 and 12). Of those divisors, the number 1 has no prime factors, hence, no positive exponents at all (and no repeated positive exponents) in its canonical prime factorization. The lists of positive exponents for 2, 3, 4, 6 and 12 are (1), (1), (2), (1,1) and (2,1) respectively (cf. A124010). Of all six divisors, only the number 6 (2^1*3^1) has at least one positive exponent repeated (namely, 1). The other five do not; hence, a(12) = 5.

%e For n = 90 = 2 * 3^2 * 5, the divisors that satisfy the condition are: 1, 2, 3, 3^2, 5, 2 * 3^2, 3^2 * 5, altogether 7, (but for example 90 itself is not included), thus a(90) = 7.

%t Table[DivisorSum[n, 1 &, Length@ Union@ # == Length@ # &@ FactorInteger[#][[All, -1]] &], {n, 105}] (* _Michael De Vlieger_, May 28 2017 *)

%o (PARI)

%o no_repeated_exponents(n) = { my(es = factor(n)[, 2]); if(length(Set(es)) == length(es),1,0); }

%o A181796(n) = sumdiv(n,d,no_repeated_exponents(d)); \\ _Antti Karttunen_, May 27 2017

%o (Python)

%o from sympy import factorint, divisors

%o def ok(n):

%o f=factorint(n)

%o ex=[f[i] for i in f]

%o for i in ex:

%o if ex.count(i)>1: return 0

%o return 1

%o def a(n): return sum([1 for i in divisors(n) if ok(i)]) # _Indranil Ghosh_, May 27 2017

%Y Diverges from A088873 at n=24 and from A085082 at n=36. a(36) = 7, while A085082(36) = 6.

%Y Partitions with distinct multiplicities are A098859.

%Y Sorted prime signature is A118914.

%Y Unsorted prime signature is A124010.

%Y a(n) is the number of divisors of n in A130091.

%Y Factorizations with distinct multiplicities are A255231.

%Y The largest of the counted divisors is A327498.

%Y Factorizations using the counted divisors are A327523.

%Y Cf. A000005, A007916, A045778, A056239, A212168, A327498, A335519, A335549.

%K nonn

%O 1,2

%A _Matthew Vandermast_, Nov 22 2010

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 25 06:42 EDT 2024. Contains 371964 sequences. (Running on oeis4.)