# Greetings from The On-Line Encyclopedia of Integer Sequences! http://oeis.org/ Search: id:a216781 Showing 1-1 of 1 %I A216781 #9 Jun 24 2014 03:22:41 %S A216781 2,4,8,16,18,20,24,32,36,40,48,50,52,64,68,72,80,88,96,98,100,104,112, %T A216781 116,128,136,144,148,152,160,162,164,176,180,192,196,200,208,212,224, %U A216781 232,240,242,244,256,272,288,292,296,304,320,324,328,338,344,352 %N A216781 Numbers such that numerator(sigma(n)/n) is odd and denominator(sigma(n)/n) is even. %C A216781 a(n) contains powers of 2 (A000079 except 1), and hemiperfect numbers (A055153, A141645, A159271, A160678). %H A216781 Vincenzo Librandi, Table of n, a(n) for n = 1..1000 %e A216781 sigma(2)/2 = 3/2 (odd/even). %t A216781 Select[Range[1000], OddQ[Numerator[DivisorSigma[1, #]/#]] && EvenQ[Denominator[DivisorSigma[1, #]/#]] &] (* _Vincenzo Librandi_, Jun 24 2014 *) %o A216781 (PARI) oeab(n) = {for (i=1, n, ab = sigma(i)/i; if ((numerator(ab) % 2 == 1) && (denominator(ab) % 2 == 0), print1(i, ", ")););} %Y A216781 Cf. A216780, A216782, A000079, A055153, A141645, A159271, A160678. %K A216781 nonn %O A216781 1,1 %A A216781 _Michel Marcus_, Sep 16 2012 # Content is available under The OEIS End-User License Agreement: http://oeis.org/LICENSE