OFFSET
1,1
COMMENTS
[In A195101 the author also refers to his numbers as 'solid numbers'. These are unrelated to the numbers presented here.]
EXAMPLE
n = 53235 is a term of this sequence, because 3 + 7 + 315 + 845 + 1183 + 1365 + 1521 + 2535 + 3549 + 5915 + 7605 + 10647 + 17745 = 53235. All summands are divisors of n and sum-irreducible.
PROG
(SageMath)
# The function 'is_sum_irreducible' is defined in A392650.
# The function 'subset_sum_exists' is defined in A392652.
def is_A392651(n) -> bool:
if n < 53235 or n % 2 == 0: return False
divs = divisors(n)[1:-1]
irr_divs = [d for d in divs if is_sum_irreducible(d)]
return subset_sum_exists(irr_divs, n)
A = [n for n in range(1, 186616) if is_A392651(n)]; print(A)
CROSSREFS
KEYWORD
nonn
AUTHOR
Peter Luschny, Feb 02 2026
STATUS
approved
