OFFSET
1,1
COMMENTS
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
EXAMPLE
a(4)=12 has four even divisors (2, 4, 6, and 12), and 4 is one of those even divisors.
The number 21 is not in this sequence: it has four divisors (1, 3, 7, and 21), and 4 is not one of those divisors.
MATHEMATICA
Select[Range[2, 1000, 2], EvenQ[DivisorSigma[0, #/2]] && MemberQ[Divisors[#], DivisorSigma[0, #/2]] &]
Select[Range[2, 278, 2], EvenQ[(d = DivisorSigma[0, #/2])] && Divisible[#, d] &] (* Amiram Eldar, Aug 29 2019 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Matthew Vandermast, Nov 14 2010
EXTENSIONS
Verified and edited by Alonso del Arte, Nov 17 2010
STATUS
approved