OFFSET
1,1
COMMENTS
Is there any number besides 836 which is in this sequence but not in A348631? - R. J. Mathar, Nov 16 2021
The next term after 836 that is not in A348631 is a(89) = 45356. - Amiram Eldar, Nov 21 2021
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
MATHEMATICA
divQ[n_, m_] := (n > 0 && (m == 0 || Divisible[n, m])); oeDivQ[n_, d_] := Module[{f = FactorInteger[n]}, And @@ MapThread[divQ, {f[[;; , 2]], IntegerExponent[d, f[[;; , 1]]]}]]; oeDivs[1] = {1}; oeDivs[n_] := Module[{d = Divisors[n]}, Select[d, oeDivQ[n, #] &]]; oesigma[1] = 1; oesigma[n_] := Total@oeDivs[n]; oeAbundantQ[n_] := oesigma[n] > 2*n; oeWeirdQ[n_] := oeAbundantQ[n] && Module[{d = Most[oeDivs[n]]}, SeriesCoefficient[Series[Product[1 + x^d[[i]], {i, Length[d]}], {x, 0, n}], n] == 0]; Select[Range[12000], oeWeirdQ]
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, Nov 13 2021
STATUS
approved