OFFSET
1,2
COMMENTS
A coreful divisor d of a number n is a divisor with the same set of distinct prime factors as n.
The number of coreful infinitary divisors of n is A363329(n).
All the terms are in A138302.
The largest exponential divisor (A322791) of n that is a number whose prime factorization exponents are all powers of 2 (A138302). The number of these divisors is A392447(n), and their sum is A392448(n). - Amiram Eldar, Jan 13 2026
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
FORMULA
MATHEMATICA
f[p_, e_] := p^(2^IntegerExponent[e, 2]); a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100]
PROG
(PARI) a(n) = {my(f = factor(n)); prod(i = 1, #f~, f[i, 1]^(2^valuation(f[i, 2], 2))); }
(Python)
from math import prod
from sympy import factorint
def A365296(n): return prod(p**(e&-e) for p, e in factorint(n).items()) # Chai Wah Wu, Sep 01 2023
CROSSREFS
KEYWORD
nonn,easy,mult
AUTHOR
Amiram Eldar, Aug 31 2023
STATUS
approved
