login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A364862
S-weird numbers: S-abundant numbers (A181487) k such that no subset of the aliquot divisors of k that are in the set S sums to k, where S is the set defined in A118372.
1
70, 836, 2704, 2744, 4030, 5530, 5810, 5830, 6230, 6790, 7070, 7192, 7210, 7490, 7630, 7910, 7912, 8890, 9170, 9272, 9590, 9730, 10430, 10570, 10792, 10990, 11410, 11690, 12110, 12530, 12670, 13370, 13510, 13790, 13930, 14770, 15610, 15890, 16030, 16310, 16730
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
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
Subsequence of A181487.
Sequence in context: A212236 A177298 A230897 * A006037 A002975 A354282
KEYWORD
nonn
AUTHOR
Amiram Eldar, Aug 11 2023
STATUS
approved