OFFSET
1,1
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.
Also MM-numbers of multiset partitions with at least two parts, not all of which are singletons (see example).
EXAMPLE
The sequence of terms together with their prime indices of prime indices begins:
21: {{1},{1,1}}
35: {{2},{1,1}}
39: {{1},{1,2}}
49: {{1,1},{1,1}}
57: {{1},{1,1,1}}
63: {{1},{1},{1,1}}
65: {{2},{1,2}}
69: {{1},{2,2}}
77: {{1,1},{3}}
87: {{1},{1,3}}
91: {{1,1},{1,2}}
95: {{2},{1,1,1}}
105: {{1},{2},{1,1}}
111: {{1},{1,1,2}}
115: {{2},{2,2}}
117: {{1},{1},{1,2}}
119: {{1,1},{4}}
129: {{1},{1,4}}
133: {{1,1},{1,1,1}}
141: {{1},{2,3}}
MATHEMATICA
Select[Range[1, 100, 2], !PrimeQ[#]&&!And@@PrimeQ/@PrimePi/@First/@If[#==1, {}, FactorInteger[#]]&]
CROSSREFS
Including even numbers gives A330948.
Including primes gives A330946.
The number of prime prime indices is given by A257994.
The number of nonprime prime indices is given by A330944.
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.
The set S of numbers whose prime indices do not all belong to S is A324694.
KEYWORD
nonn
AUTHOR
Gus Wiseman, Jan 14 2020
STATUS
approved