A353389 Create the sequence of all positive integers > 1 that are prime or whose prime shadow (A181819) is a divisor that is already in the sequence. Then remove all the primes.
9, 36, 125, 225, 441, 1089, 1260, 1521, 1980, 2340, 2401, 2601, 2772, 3060, 3249, 3276, 3420, 4140, 4284, 4761, 4788, 5148, 5220, 5580, 5796, 6660, 6732, 7308, 7380, 7524, 7569, 7740, 7812, 7956, 8460, 8649, 8892, 9108, 9324, 9540, 10332, 10620, 10764, 10836
Offset: 1
Keywords
Examples
The initial terms and their prime indices: 9: {2,2} 36: {1,1,2,2} 125: {3,3,3} 225: {2,2,3,3} 441: {2,2,4,4} 1089: {2,2,5,5} 1260: {1,1,2,2,3,4} 1521: {2,2,6,6} 1980: {1,1,2,2,3,5}
Crossrefs
Programs
-
Mathematica
red[n_]:=If[n==1,1,Times@@Prime/@Last/@FactorInteger[n]]; suQ[n_]:=PrimeQ[n]||Divisible[n,red[n]]&&suQ[red[n]]; Select[Range[2,2000],suQ[#]&&!PrimeQ[#]&]
Comments