cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A335935 Infinitary pseudoperfect numbers (A306983) whose number of divisors is not a power of 2.

This page as a plain text file.
%I A335935 #10 Jul 02 2020 03:51:52
%S A335935 60,72,90,96,150,294,360,420,480,486,504,540,600,630,660,672,726,756,
%T A335935 780,792,864,924,936,960,990,1014,1020,1050,1056,1092,1120,1140,1152,
%U A335935 1170,1176,1188,1224,1248,1344,1350,1368,1380,1386,1400,1428,1440,1470,1500,1530
%N A335935 Infinitary pseudoperfect numbers (A306983) whose number of divisors is not a power of 2.
%C A335935 Pseudoperfect numbers (A005835) whose number of divisors is a power of 2 (A036537) are also infinitary pseudoperfect numbers (A306983), since all of their divisors are infinitary.
%C A335935 First differs from A335198 at n = 77.
%H A335935 Amiram Eldar, <a href="/A335935/b335935.txt">Table of n, a(n) for n = 1..3000</a>
%e A335935 60 is a term since its number of divisors is 12 which is not a power of 2, so not all of its divisors are infinitary, and it is the sum of its infinitary divisors: 1 + 3 + 4 + 5 + 12 + 15 + 20 = 60.
%t A335935 idivs[x_] := If[x == 1, 1, Sort @ Flatten @ Outer[Times, Sequence @@ (FactorInteger[x] /. {p_, m_Integer} :> p^Select[Range[0, m], BitOr[m, #] == m &])]]; infpspQ[n_] := Module[{d = Most @ idivs[n], x}, Plus @@ d >= n && SeriesCoefficient[Series[Product[1 + x^d[[i]], {i, Length[d]}], {x, 0, n}], n] > 0]; pow2Q[n_] := n == 2^IntegerExponent[n, 2]; Select[Range[2, 500], !pow2Q[DivisorSigma[0,#]] && infpspQ[#] &]
%Y A335935 Subsequence of A005835 and A306983.
%Y A335935 Cf. A036537, A077609, A335198.
%K A335935 nonn
%O A335935 1,1
%A A335935 _Amiram Eldar_, Jun 30 2020