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”).

A014690
a(n) = n + prime(n+1).
6
4, 7, 10, 15, 18, 23, 26, 31, 38, 41, 48, 53, 56, 61, 68, 75, 78, 85, 90, 93, 100, 105, 112, 121, 126, 129, 134, 137, 142, 157, 162, 169, 172, 183, 186, 193, 200, 205, 212, 219, 222, 233, 236, 241, 244, 257, 270, 275, 278, 283, 290, 293, 304, 311, 318, 325, 328
OFFSET
1,1
COMMENTS
In sequence of odd primes add 1 to first prime, add 2 to 2nd prime, add 3 to 3rd prime and so on.
MATHEMATICA
a[n_]:=Prime[n+1]+n (Zak Seidov, May 05 2005)
With[{nn=60}, Prime[Range[2, nn+1]]+Range[nn]] (* Harvey P. Dale, Oct 02 2015 *)
CROSSREFS
Essentially the same sequence as A095116.
Sequence in context: A298789 A064368 A026372 * A274383 A310704 A126891
KEYWORD
nonn,easy
EXTENSIONS
More terms from Erich Friedman.
STATUS
approved