login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A095683
Number of prime power divisors of n. If n = product p_i^r_i then d = product {p_i^s_i, 2 <= s_i <= r_i, s_i is prime} is a prime power divisor of n.
4
1, 0, 0, 1, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0
OFFSET
1,8
COMMENTS
The number of coreful divisors of n that are terms of A056166 (a divisor of n is coreful if it has the same set of distinct prime factors as n, cf. A307958). - Amiram Eldar, Oct 31 2023
FORMULA
Multiplicative with a(p^e) = A000720(e). - Vladeta Jovovic, Jul 06 2004
EXAMPLE
n=16: prime power divisors of 16 are {2^2, 2^3}, so a(16) = 2.
MATHEMATICA
Array[Boole[# == 1] + Times @@ Map[PrimePi, FactorInteger[#][[All, -1]] ] &, 120] (* Michael De Vlieger, Jul 19 2017 *)
PROG
(PARI) A095683(n) = { my(f = factor(n), m = 1); for (k=1, #f~, m *= primepi(f[k, 2]); ); m; } \\ Antti Karttunen, Jul 19 2017
(Python)
from sympy import factorint, primepi, prod
def a(n): return 1 if n==1 else prod(primepi(e) for e in factorint(n).values())
print([a(n) for n in range(1, 51)]) # Indranil Ghosh, Jul 19 2017
CROSSREFS
KEYWORD
nonn,easy,mult
EXTENSIONS
More terms from Vladeta Jovovic, Jul 06 2004
STATUS
approved