OFFSET
1,1
COMMENTS
The water sealing of a number n is the smallest positive integer s(n) so that the water hull of n can be written h(n) = n * s(n). n is waterproof if and only if s(n) = 1.
EXAMPLE
48300 has a water capacity of 17 and so is not waterproof. The waterproof hull of 48300 is 1014300. Thus the sealing of 48300 is 21. The prime factorization of the sealing shows where the water holes of n are, in this example at 3 and 7 (see the example in A275339).
PROG
(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)//n for n in range(1, 1200) if WaterCapacity(n) > 0])
CROSSREFS
KEYWORD
nonn,new
AUTHOR
Peter Luschny, Dec 16 2024
STATUS
approved