OFFSET
1,1
COMMENTS
Analogous to weird numbers (A006037) as S-perfect numbers (A118372) are analogous to perfect numbers (A000396) and S-abundant numbers (A181487) are analogous to abundant numbers (A005101).
Apparently, includes all the weird numbers (verified for all terms below 5*10^7). It also includes additional terms: 2704, 2744, 5530, 5810, 6230, 6790, 7070, 7210, 7490, ... .
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
MATHEMATICA
weirdQ[n_, d_] := If[Total[d] <= n, False, SeriesCoefficient[Series[Product[1 + x^d[[i]], {i, Length[d]}], {x, 0, n}], n] == 0];
S = {1}; Sweird = {}; Do[s = Total[(d = Intersection[S, Divisors[n]])]; If[s <= n, AppendTo[S, n], If[weirdQ[n, d], AppendTo[Sweird, n]]], {n, 2, 10^4}]; Sweird
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, Aug 11 2023
STATUS
approved