OFFSET
1,1
COMMENTS
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..450
EXAMPLE
210 is a term since {1, 2, 3, 14, 15, 70, 105, 210} is a subset of its unitary divisors whose sum is 420 = 2 * 210, and for each divisor d in this subset 210/d is also in it: 1 * 210 = 2 * 105 = 3 * 70 = 14 * 15 = 210.
MATHEMATICA
seqQ[n_] := Module[{d = Select[Divisors[n], CoprimeQ[#, n/#] &]}, nd = Length[d]; divpairs = d[[1 ;; nd/2]] + d[[-1 ;; nd/2 + 1 ;; -1]]; SeriesCoefficient[Series[Product[1 + x^divpairs[[i]], {i, Length[divpairs]}], {x, 0, 2*n}], 2*n] > 0]; Select[Range[2, 1000], seqQ]
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, Apr 27 2020
STATUS
approved