A275666 Multisets of numbers such that the sum of reciprocals is 1 and each element e occurs at most lpf(e) - 1 times.
2, 3, 6, 2, 5, 5, 10, 3, 5, 5, 6, 10, 2, 4, 6, 12, 3, 3, 4, 12, 4, 5, 5, 6, 10, 12, 2, 7, 7, 7, 14, 3, 6, 7, 7, 7, 14, 4, 6, 7, 7, 7, 12, 14, 5, 5, 7, 7, 7, 10, 14, 2, 3, 10, 15, 2, 4, 10, 12, 15, 2, 5, 6, 15, 15, 3, 3, 5, 15, 15, 3, 3, 6, 10, 15, 3, 5, 5, 5, 15, 3, 4
Offset: 1
Examples
{2, 3, 6} {2, 5, 5, 10} {3, 5, 5, 6, 10} {2, 4, 6, 12} {3, 3, 4, 12} {4, 5, 5, 6, 10, 12} {2, 7, 7, 7, 14} {3, 6, 7, 7, 7, 14} {4, 6, 7, 7, 7, 12, 14} {5, 5, 7, 7, 7, 10, 14} {2, 3, 10, 15} {2, 4, 10, 12, 15} {2, 5, 6, 15, 15} {3, 3, 5, 15, 15} {3, 3, 6, 10, 15} {3, 5, 5, 5, 15} ... {3, 3, 4, 12} comes before {2, 7, 7, 7, 14} because the largest element of the first is less than the one from the second. {2, 5, 5, 10} comes before {3, 5, 5, 6, 10} because they both have the largest element 10 but the latter has more elements. {2, 4, 10, 12, 15} comes before {2, 5, 6, 15, 15} because they both have the largest element 15 and the same number of elements but the first smallest different element, 4 resp. 5, is less for the first.
Comments