OFFSET
1,2
COMMENTS
A prime index of n is a number m such that prime(m) divides n.
Also squarefree numbers whose prime indices other than 1 are equal prime numbers.
EXAMPLE
Entry A302242 describes a correspondence between positive integers and multiset multisystems. In this case it gives the following sequence of set systems.
01: {}
02: {{}}
03: {{1}}
05: {{2}}
06: {{},{1}}
10: {{},{2}}
11: {{3}}
17: {{4}}
22: {{},{3}}
31: {{5}}
34: {{},{4}}
41: {{6}}
59: {{7}}
62: {{},{5}}
67: {{8}}
82: {{},{6}}
83: {{9}}
MATHEMATICA
Select[Range[1000], SquareFreeQ[#]&&SameQ@@DeleteCases[primeMS[#], 1]&&And@@PrimeQ/@DeleteCases[primeMS[#], 1]&]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Apr 10 2018
STATUS
approved