A175224 a(n) = prime(n) + 8.
10, 11, 13, 15, 19, 21, 25, 27, 31, 37, 39, 45, 49, 51, 55, 61, 67, 69, 75, 79, 81, 87, 91, 97, 105, 109, 111, 115, 117, 121, 135, 139, 145, 147, 157, 159, 165, 171, 175, 181, 187, 189, 199, 201, 205, 207, 219, 231, 235, 237, 241, 247, 249, 259, 265, 271, 277, 279
Offset: 1
Keywords
Links
- G. C. Greubel, Table of n, a(n) for n = 1..10000
Crossrefs
Programs
-
GAP
Filtered([1..300], k-> IsPrime(k) ) + 8; # G. C. Greubel, May 20 2019
-
Magma
[(p+8): p in PrimesUpTo(500)]; // Vincenzo Librandi, Dec 04 2010
-
Mathematica
Prime[Range[60]]+8 (* Harvey P. Dale, Mar 02 2015 *)
-
PARI
{a(n) = prime(n) + 8}; \\ G. C. Greubel, May 20 2019
-
Sage
[nth_prime(n) + 8 for n in (1..60)] # G. C. Greubel, May 20 2019
Extensions
More terms from Vincenzo Librandi, Mar 14 2010
Comments