OFFSET
1
COMMENTS
After a(1) = 1 numbers such that only primes occur as exponents in their prime factorization.
LINKS
EXAMPLE
For n = 4 = 2^2, 2 is prime, thus a(4) = 1.
For n = 12 = 2^2 * 3^1, 2 is prime, but 1 is not, thus a(12) = 0.
For n = 16 = 2^4, 4 is not prime, thus a(16) = 0.
For n = 72 = 2^3 * 3^2, both exponents 3 and 2 are primes, thus a(72) = 1.
PROG
(PARI)
vecproduct(v) = { my(m=1); for(i=1, #v, m *= v[i]); m; };
A293449(n) = vecproduct(apply(e -> isprime(e), factorint(n)[, 2]));
CROSSREFS
KEYWORD
nonn,changed
AUTHOR
Antti Karttunen, Nov 17 2017
STATUS
editing