OFFSET
1,1
LINKS
Donovan Johnson and Giovanni Resta, Table of n, a(n) for n = 1..600 (terms < 10^12, first 200 terms from Donovan Johnson)
MATHEMATICA
qcp[n_, d_] := Block[{p, e}, {p, e} = Transpose@FactorInteger@n;
Length[p] > 1 && Max[e] == 1 && And @@ IntegerQ /@ ((n + d)/(p + d))]; Select[Range[10^6], qcp[#, 2] &] (* Giovanni Resta, May 21 2013 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved