A175225 a(n) = prime(n) + 10.
12, 13, 15, 17, 21, 23, 27, 29, 33, 39, 41, 47, 51, 53, 57, 63, 69, 71, 77, 81, 83, 89, 93, 99, 107, 111, 113, 117, 119, 123, 137, 141, 147, 149, 159, 161, 167, 173, 177, 183, 189, 191, 201, 203, 207, 209, 221, 233, 237, 239, 243, 249, 251, 261, 267, 273, 279, 281
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) ) + 10; # G. C. Greubel, May 21 2019
-
Magma
[(p+10):p in PrimesUpTo(500)]; // Vincenzo Librandi, Dec 04 2010
-
Mathematica
10 + Prime[Range[70]] (* G. C. Greubel, May 21 2019 *)
-
PARI
{a(n) = prime(n) + 10}; \\ G. C. Greubel, May 21 2019
-
Sage
[nth_prime(n) + 10 for n in (1..70)] # G. C. Greubel, May 21 2019
Extensions
More terms from Vincenzo Librandi, Mar 14 2010
Comments