A330990 Numbers whose inverse prime shadow (A181821) has its number of factorizations into factors > 1 (A001055) equal to a power of 2 (A000079).
1, 2, 3, 4, 6, 15, 44
Offset: 1
Examples
The factorizations of A181821(n) for n = 1, 2, 3, 4, 6, 15: () (2) (4) (6) (12) (72) (2*2) (2*3) (2*6) (8*9) (3*4) (2*36) (2*2*3) (3*24) (4*18) (6*12) (2*4*9) (2*6*6) (3*3*8) (3*4*6) (2*2*18) (2*3*12) (2*2*2*9) (2*2*3*6) (2*3*3*4) (2*2*2*3*3)
Crossrefs
Programs
-
Mathematica
facs[n_]:=If[n<=1,{{}},Join@@Table[Map[Prepend[#,d]&,Select[facs[n/d],Min@@#>=d&]],{d,Rest[Divisors[n]]}]]; nrmptn[n_]:=Join@@MapIndexed[Table[#2[[1]],{#1}]&,If[n==1,{},Flatten[Cases[FactorInteger[n]//Reverse,{p_,k_}:>Table[PrimePi[p],{k}]]]]]; Select[Range[100],IntegerQ[Log[2,Length[facs[Times@@Prime/@nrmptn[#]]]]]&]
Comments