login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A319181
Numbers that are not perfect powers but whose prime indices have a common divisor > 1.
1
3, 5, 7, 11, 13, 17, 19, 21, 23, 29, 31, 37, 39, 41, 43, 47, 53, 57, 59, 61, 63, 65, 67, 71, 73, 79, 83, 87, 89, 91, 97, 101, 103, 107, 109, 111, 113, 115, 117, 127, 129, 131, 133, 137, 139, 147, 149, 151, 157, 159, 163, 167, 171, 173, 179, 181, 183, 185, 189
OFFSET
1,1
COMMENTS
A prime index of n is a number m such that prime(m) divides n.
EXAMPLE
The sequence of integer partitions whose Heinz numbers are in the sequence begins: (2), (3), (4), (5), (6), (7), (8), (4,2), (9), (10), (11), (12), (6,2), (13), (14), (15), (16), (8,2), (17), (18), (4,2,2), (6,3).
MATHEMATICA
Select[Range[1000], And[GCD@@PrimePi/@FactorInteger[#][[All, 1]]>1, GCD@@FactorInteger[#][[All, 2]]==1]&]
KEYWORD
nonn
AUTHOR
Gus Wiseman, Sep 12 2018
STATUS
approved