A257049 Integer area of integer-sided triangle such that two sides are twin primes.
6, 66, 6810, 72006, 182430, 370614, 3203694, 6353634, 28698786, 33163770, 55637466, 105470250, 151375626, 178631034, 185921166, 217064574, 376267326, 853918566, 1172755854, 1443472134, 1472632266, 2217439890, 6709586934, 13826592870, 17356640970, 18127936590
Offset: 1
Keywords
Links
- Zak Seidov, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
nn=40000; lst={}; Do[s=(2*Prime[c]-2+Prime[c+1]+Prime[c])/2; If[IntegerQ[s], area2=s (s-2*Prime[c]+2)(s-Prime[c+1])(s-Prime[c]); If[area2>0 && IntegerQ[Sqrt[area2]] && Prime[c+1]==Prime[c]+2, AppendTo[lst, Sqrt[area2]]]], {c, nn}]; Union[lst]
Comments