OFFSET
1,1
COMMENTS
EXAMPLE
The terms together with their prime indices begin:
2: {1} 53: {16} 109: {29}
3: {2} 59: {17} 113: {30}
5: {3} 61: {18} 125: {3,3,3}
7: {4} 63: {2,2,4} 127: {31}
9: {2,2} 65: {3,6} 131: {32}
11: {5} 67: {19} 137: {33}
13: {6} 71: {20} 139: {34}
17: {7} 73: {21} 149: {35}
19: {8} 79: {22} 150: {1,2,3,3}
23: {9} 81: {2,2,2,2} 151: {36}
29: {10} 83: {23} 154: {1,4,5}
30: {1,2,3} 84: {1,1,2,4} 157: {37}
31: {11} 89: {24} 163: {38}
37: {12} 97: {25} 165: {2,3,5}
41: {13} 101: {26} 167: {39}
43: {14} 103: {27} 169: {6,6}
47: {15} 107: {28} 173: {40}
49: {4,4} 108: {1,1,2,2,2} 179: {41}
MATHEMATICA
prix[n_]:=If[n==1, {}, Flatten[Cases[FactorInteger[n], {p_, k_}:>Table[PrimePi[p], {k}]]]];
Select[Range[2, 100], OddQ[#]&&Divisible[Times@@prix[#], Total[prix[#]]]&]
CROSSREFS
For nonprime instead of odd we get A326150.
Counting and ranking multisets by comparing sum and product:
KEYWORD
nonn
AUTHOR
Gus Wiseman, Jan 16 2025
STATUS
approved
