OFFSET
1,1
COMMENTS
The sequence is infinite because the powers of 2 (A000079) are in the sequence.
The prime powers with even exponents (A056798) are in the sequence.
The cubes of primes (A030078) are in the sequence.
The numbers of the form 2p^2 (A079704) with p prime are in the sequence.
The corresponding integers are 4, 6, 6, 8, 9, 10, 9, 10, 14, 14, 11, 12, 12, 13, 17, 22, 15, 14, 16, 26, 17, 15, 16, 34, 19, ...
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
EXAMPLE
18 is in the sequence because the divisors of 18 are {1, 2, 3, 6, 9, 18} and 2/1 + 3/2 + 6/3 + 9/6 + 18/9 = 9 is integer.
MATHEMATICA
lst={}; Do[s=0; Do[s=s+Divisors[n][[i+1]]/Divisors[n][[i]], {i, 1, Length[Divisors[n]]-1}]; If[IntegerQ[s]&&!PrimeQ[n], AppendTo[lst, n]], {n, 2300}]; lst
Select[Range[2210], CompositeQ[#]&&IntegerQ[Total[#[[2]]/#[[1]]&/@Partition[ Divisors[ #], 2, 1]]]&] (* Harvey P. Dale, Jul 09 2019 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Michel Lagneau, Feb 27 2015
STATUS
approved