login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A175225
a(n) = prime(n) + 10.
9
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,1
COMMENTS
a(n) = A000040(n) + 10 = A008864(n) + 9 = A052147(n) + 8 = A113395(n) + 7 = A175221(n) + 6 = A175222(n) + 5 = A139049(n) + 4 = A175223(n) + 3 = A175224(n) + 2 = A140353(n) + 1.
LINKS
MATHEMATICA
10 + Prime[Range[70]] (* G. C. Greubel, May 21 2019 *)
PROG
(Magma) [(p+10):p in PrimesUpTo(500)]; // Vincenzo Librandi, Dec 04 2010
(PARI) {a(n) = prime(n) + 5}; \\ G. C. Greubel, May 21 2019
(Sage) [nth_prime(n) + 10 for n in (1..70)] # G. C. Greubel, May 21 2019
(GAP) Filtered([1..300], k-> IsPrime(k) ) + 10; # G. C. Greubel, May 21 2019
KEYWORD
nonn,changed
AUTHOR
Jaroslav Krizek, Mar 06 2010
EXTENSIONS
More terms from Vincenzo Librandi, Mar 14 2010
STATUS
approved