OFFSET
1,4
COMMENTS
A prime index of n is a number m such that prime(m) divides n. The multiset of prime indices of n is row n of A112798.
FORMULA
Additive with a(p^e) = e if primepi(p) is nonprime, and 0 otherwise. - Amiram Eldar, Nov 03 2023
EXAMPLE
24 has prime indices {1,1,1,2}, of which {1,1,1} are nonprime, so a(24) = 3.
MATHEMATICA
Table[Total[Cases[If[n==1, {}, FactorInteger[n]], {p_, k_}/; !PrimeQ[PrimePi[p]]:>k]], {n, 30}]
PROG
(PARI) a(n) = my(f=factor(n)); sum(k=1, #f~, if(!isprime(primepi(f[k, 1])), f[k, 2], 0)); \\ Daniel Suteu, Jan 14 2020
CROSSREFS
The number of prime prime indices is given by A257994.
Primes of prime index are A006450.
Primes of nonprime index are A007821.
Products of primes of prime index are A076610.
Products of primes of nonprime index are A320628.
Numbers whose prime indices are not all prime are A330945.
KEYWORD
nonn,easy
AUTHOR
Gus Wiseman, Jan 13 2020
STATUS
approved