OFFSET
1,2
COMMENTS
A prime index of n is a number m such that prime(m) divides n.
LINKS
Andrew Howroyd, Table of n, a(n) for n = 1..1000
FORMULA
Sum_{n>=1} 1/a(n) = 2 * Sum_{n>=1} 1/A076610(n) = 2 * Product_{p in A006450} p/(p-1) converges since the sum of the reciprocals of A006450 converges. - Amiram Eldar, Feb 02 2021
MATHEMATICA
Select[Range[400], #===1||And@@(#===1||PrimeQ[#]&)/@PrimePi/@FactorInteger[#][[All, 1]]&]
PROG
(PARI) ok(n)={!#select(p->p>2 && !isprime(primepi(p)), factor(n)[, 1])} \\ Andrew Howroyd, Aug 26 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Apr 09 2018
STATUS
approved