A324897 Odd numbers k such that A318458(k) (bitwise-AND of k and sigma(k)-k) is equal to k.
7425, 76545, 92565, 236925, 831105, 954765, 1401345, 2011905, 2048445, 2129985, 2253825, 2445345, 2621745, 2974725, 3283245, 3847725, 5709825, 6447105, 8422785, 8503425, 8945685, 10781505, 12488385, 13470345, 14322945, 15213825, 15340545, 19470465, 19502145, 20075265, 22749825, 25740225, 25756605, 26215245, 27009045
Offset: 1
Keywords
Links
Programs
-
Mathematica
Select[Range[1, 10^7, 2], BitAnd[#, DivisorSigma[1, #] - #] == # &] (* Michael De Vlieger, Jun 22 2019, after Vincenzo Librandi at A318458 *)
-
PARI
isok(k) = (k%2) && (bitand(k, sigma(k)-k) == k); \\ Michel Marcus, Jul 18 2021
Comments