OFFSET
1,1
COMMENTS
Many of these are excluded because the sum of a(n)*6 and its divisors less than or equal to its square root is prime, but not always. a(3) = 18. 18*6 = 108. Adding the divisors less than or equal to the square root of 108 yields 133. 133 is not prime, but shares no common divisor with 108 greater than 1.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
EXAMPLE
MATHEMATICA
aQ[n_] := GCD[6n, DivisorSum[6n, # &, # < Sqrt[6n] &]] == 1; Select[Range[287], aQ] (* Amiram Eldar, Aug 28 2019 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Chuck Seggelin (seqfan(AT)plastereddragon.com), Jan 15 2005
STATUS
approved