A379098 The waterproof hulls of numbers that are not waterproof (A379097).
180, 252, 360, 396, 468, 504, 612, 684, 720, 792, 828, 1400, 900, 936, 1575, 1008, 1044, 1116, 1224, 6300, 2200, 1332, 1368, 1440, 1476, 2475, 1548, 2600, 4752, 1656, 2800, 1692, 2925, 1764, 1800, 4312, 5616, 3150, 1908, 9900, 2016, 3400, 4851, 2088, 2124, 5096
Offset: 1
Keywords
Programs
-
Python
# Using function "WaterCapacity" from A275339. def s(n: int) -> int: j = n while True: if WaterCapacity(j) == 0 and j % n == 0: return j j += n print([s(n) for n in range(1, 700) if WaterCapacity(n) > 0])
Comments