OFFSET
1,1
COMMENTS
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
FORMULA
a(n) = 2*A005101(n).
EXAMPLE
40 is in the sequence because the even divisors of 40 are 2, 4, 8 , 10, 20, 40 and 1/2 + 1/4 + 1/8 + 1/10 + 1/20 + 1/40 = 42/40 = A204823(3)/a(3), and 42/40 > 1.
MAPLE
***program 1 where sum of reciprocals even divisors > 1***
with(numtheory):for n from 2 by 2 to 500 do:x:=divisors(n):n1:=nops(x): s:=0:for i from 1 to n1 do: if irem(x[i], 2)=0 then s:=s+1/x[i]:else fi:od: if s>1 then printf(`%d, `, n):else fi:od:
***program 2 where sum of reciprocals even divisors = m/n***
with(numtheory):for n from 2 to 500 do:x:=divisors(n):n1:=nops(x): s:=0:for i from 1 to n1 do: if irem(x[i], 2)=0 then s:=s+1/x[i]:else fi:od: for m from n+1 to 2*n do: if s=m/n then printf(`%d, `, n):else fi:od:od:
MATHEMATICA
Select[Range[500], Total[1/Select[Divisors[#], EvenQ]]>1&] (* Harvey P. Dale, Aug 15 2015 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Michel Lagneau, Jul 25 2013
STATUS
approved