OFFSET
1,1
COMMENTS
EXAMPLE
6 is a term since its set of divisors, {1, 2, 3, 6}, can be partitioned into two disjoint sets with equal sum, {1, 2, 3} and {6}, such that the first 3 divisors are in the first set.
MATHEMATICA
Select[Range[200000], MemberQ[Accumulate[(d = Divisors[#])], (Plus @@ d)/2] &]
PROG
(Python)
from itertools import count, islice
from sympy import divisors
def A334410_gen(startvalue=1): # generator of terms >= startvalue
for n in count(max(startvalue, 1)):
ds = divisors(n)
s = sum(ds)
if s % 2 == 0 and any(2*a==s for a in accumulate(ds)):
yield n
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Amiram Eldar, Apr 27 2020
EXTENSIONS
a(19)-a(25) from Giovanni Resta, May 08 2020
STATUS
approved