OFFSET
1,1
COMMENTS
The waterproof hull h(k) of k is the smallest waterproof number that k divides. Zero and one are waterproof numbers by convention. Numbers that admit a prime factorization are waterproof if their water capacity is 0. (The water capacity of a number is defined 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) for n in range(1, 700) if WaterCapacity(n) > 0])
CROSSREFS
KEYWORD
nonn
AUTHOR
Peter Luschny, Dec 16 2024
STATUS
approved