The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A078725 a(n) = prime(n*(n+1)/2+4). 2
7, 11, 17, 29, 43, 67, 97, 131, 173, 227, 277, 349, 421, 499, 599, 683, 809, 919, 1039, 1181, 1307, 1483, 1621, 1811, 2003, 2207, 2389, 2633, 2819, 3067, 3329, 3571, 3833, 4099, 4397, 4691, 5003, 5347, 5657, 6007, 6329, 6703, 7057, 7499, 7873, 8287, 8707, 9133 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
More generally one may consider the sequence S(n, m) = prime(n*(n+1)/2+m+1), for m=1, 2, 3...
LINKS
MATHEMATICA
Table[Prime[(n (n + 1))/2 + 4], {n, 0, 60}] (* Vincenzo Librandi, Jun 08 2016 *)
PROG
(PARI) triprimes(n, m) = { sr = 0; for(j=m, n, x = j*(j+1)/2+m+1; z = prime(x); sr+=1.0/z; print1(z" "); ); print(); print(sr); }
(Magma) [NthPrime(n*(n+1) div 2 + 4): n in [0..50]]; // Vincenzo Librandi, Jun 08 2016
CROSSREFS
Apart from initial terms, primes in fourth diagonal of triangle in A078721.
Sequence in context: A156105 A062574 A063912 * A247478 A174360 A320384
KEYWORD
nonn,easy
AUTHOR
Cino Hilliard, Dec 20 2002
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 28 22:13 EDT 2024. Contains 372921 sequences. (Running on oeis4.)