Question: An Alternative to Flatten

I have a set for which I want to multiply each value by a sequence.

The only way I know how to do this is to convert set->list, apply the sequence, Flatten and convert list->set.

The problem is that Flatten stops working when the list becomes large. Suggestions?

Please Wait...