A324898 Odd numbers k such that sigma(k) is congruent to 2 modulo 4 and k = A318458(k), where A318458(k) is bitwise-AND of k and sigma(k)-k.
236925, 3847725, 51122925, 69468525, 151141725, 154669725, 269748225, 344211525, 415565325, 445817925, 551569725, 1111904325, 1112565825, 1113756525, 1175717025, 1400045625, 1631666925, 1695170925, 1820873925, 1915847325, 1946981925, 2179080225, 2321121825, 2453690925, 2460041325, 2491740225, 3223500525, 3493517445, 3775103325
Offset: 1
Keywords
Links
Crossrefs
Programs
-
Mathematica
Select[Range[10^5, 10^8, 2], And[Mod[#2, 4] == 2, BitAnd[#1, #2 - #1] == #1] & @@ {#, DivisorSigma[1, #]} &] (* Michael De Vlieger, Jun 22 2019 *)
-
PARI
for(n=1, oo, if((n%2)&&2==((t=sigma(n))%4)&&(bitand(n, t-n)==n), print1(n,", ")));
Comments