A165945 Primes of the form p+(p+1)^3, where p is also prime.
29, 67, 5849, 3375149, 7078079, 7762589, 11852579, 17173769, 42144539, 46656359, 80621999, 87528827, 91125449, 102503699, 132651509, 142237169, 173741669, 264609929, 287496659, 320014187, 567664379, 686129849, 700227959, 851972339
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Crossrefs
Cf. A163426. - R. J. Mathar, Oct 28 2009
Programs
-
Magma
[a: p in PrimesInInterval(1, 1000) | IsPrime(a) where a is p + (p + 1)^3]; // Vincenzo Librandi, Oct 12 2012
-
Mathematica
Select[Table[p + (p + 1)^3, {p, Prime[Range[300]]}], PrimeQ] (* Vincenzo Librandi, Oct 12 2012 *)
Extensions
Definition shortened by R. J. Mathar, Oct 28 2009
Comments