A176686 Numbers n such that n^2-1 are products of 3 distinct primes.
14, 16, 20, 22, 32, 36, 38, 40, 52, 54, 58, 66, 68, 70, 78, 84, 88, 90, 96, 110, 112, 114, 128, 130, 132, 140, 156, 158, 162, 178, 182, 200, 210, 212, 222, 234, 238, 250, 252, 258, 264, 268, 292, 294, 306, 308, 310, 318, 330, 336, 338, 354, 366, 372, 378, 380
Offset: 1
Keywords
Links
- Chai Wah Wu, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
Select[Range[6! ],Last/@FactorInteger[ #^2-1]=={1,1,1}&] Sqrt[#+1]&/@Select[Sort[Times@@@Subsets[Prime[Range[100]],{3}]], IntegerQ[ Sqrt[#+1]]&] (* Harvey P. Dale, Jul 24 2016 *)
Comments