cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A379098 The waterproof hulls of numbers that are not waterproof (A379097).

Original entry on oeis.org

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

Views

Author

Peter Luschny, Dec 16 2024

Keywords

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.)

Crossrefs

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])