OFFSET
1,1
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
EXAMPLE
3344 is a term since the sum of its noninfinitary divisors, {2, 4, 8, 22, 38, 44, 76, 88, 152, 418, 836, 1672}, is 3360 > 3344, and no subset of these divisors sums to 3344.
MATHEMATICA
q[n_] := !IntegerQ@ Log2@ DivisorSigma[0, n]; nidiv[1] = {}; nidiv[n_] := Complement[Divisors[n], Sort@ Flatten@ Outer[Times, Sequence @@ (FactorInteger[n] /. {p_, m_Integer} :> p^Select[Range[0, m], BitOr[m, #] == m &])]]; s = {}; Do[If[! q[n], Continue[]]; d = nidiv[n]; If[Total[d] <= n, Continue[]]; c = SeriesCoefficient[Series[Product[1 + x^d[[i]], {i, Length[d]}], {x, 0, n}], n]; If[c == 0, AppendTo[s, n]], {n, 1, 13000}]; s
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, Oct 21 2021
EXTENSIONS
More terms from Amiram Eldar, Mar 25 2023
STATUS
approved