OFFSET
1,1
COMMENTS
Subsequence of A186285 and first differs from it at n = 102: A186285(102) = 512 = 2^9 is not a term of this sequence.
Numbers with an equal number of exponential and non-exponential divisors: numbers k such that A049419(k) = A160097(k).
The numbers with more exponential divisors than non-exponential divisors are 1 and the squares of the terms in this sequence, i.e., 1, squares of primes (A001248), and fourth powers of primes (A030514).
{2, 3} and {7, 8} are the only pairs of consecutive integers that are both terms in this sequence.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
EXAMPLE
A prime p has 2 divisors, 1 and p. p is an exponential divisor, and 1 is a non-exponential divisor.
A cube of a prime p^3 has 4 divisors, 1, p, p^2 and p^3. p and p^3 are exponential divisors, and 1 and p^2 are non-exponential divisors.
MATHEMATICA
With[{m = 60}, Union[Prime[Range[m]], Select[Range[Surd[Prime[m], 3]], PrimeQ]^3]]
PROG
(PARI) list(lim) = Set(concat(primes(primepi(lim)), apply(x -> x^3, primes(primepi(sqrtnint(lim, 3))))));
(Python)
from sympy import primepi, integer_nthroot
from oeis_sequences.OEISsequences import bisection
def A393213(n):
def f(x): return n+x-primepi(x)-primepi(integer_nthroot(x, 3)[0])
return bisection(f, n, n) # Chai Wah Wu, Feb 06 2026
CROSSREFS
Subsequence of A186285.
KEYWORD
nonn,easy
AUTHOR
Amiram Eldar, Feb 06 2026
STATUS
approved
