A208294 Triangular numbers T from A000217 such that (4*T+1)/13 is prime.
55, 120, 1485, 1953, 2278, 2850, 3240, 6555, 9870, 10585, 16110, 17020, 18528, 34453, 36585, 37950, 47895, 49455, 52003, 56280, 57970, 70125, 72010, 80200, 96580, 110685, 127260, 129795, 133903, 165025, 169653, 172578, 244650
Offset: 1
Keywords
Examples
a(2) = 120. m(2)= 31: 120 = T((31-1)/2) = T(15)=A000217(15). (4*120+1)/13 = 37 = A208292(2).
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..5000
Programs
-
Mathematica
tri = # (# + 1)/2 & /@ Range@ 1000; Select[ tri, PrimeQ[(4 # + 1)/13] &] (* Robert G. Wilson v, Feb 28 2012 *)
Comments