OFFSET
1,2
COMMENTS
This is also the sequence of numbers x such that A243473(x) is even. - Michel Marcus, Jun 06 2014
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..1000
EXAMPLE
sigma(10)/10 = 9/5; both 9 and 5 are odd, so 10 is in the sequence.
MATHEMATICA
Select[Range[500], OddQ[Numerator[DivisorSigma[1, #]/#]] && OddQ[Denominator[DivisorSigma[1, #]/#]] &] (* Alonso del Arte, Sep 16 2012 *)
PROG
(PARI) ooab(k) = {for (i=1, k, ab = sigma(i)/i; if ((numerator(ab) % 2 == 1) && (denominator(ab) % 2 == 1), print1(i, ", ")); ); }
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Michel Marcus, Sep 16 2012
STATUS
approved