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!)
A078724 a(n) = prime(n*(n+1)/2+3). 2
5, 7, 13, 23, 41, 61, 89, 127, 167, 223, 271, 347, 419, 491, 593, 677, 797, 911, 1033, 1171, 1303, 1481, 1619, 1801, 1999, 2203, 2383, 2621, 2803, 3061, 3323, 3559, 3823, 4093, 4391, 4679, 4999, 5333, 5653, 5987, 6323, 6701, 7043, 7489, 7867, 8273, 8699, 9127 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
The sum of the reciprocals of the terms appears to converge.
LINKS
MATHEMATICA
Table[Prime[(n (n + 1)) / 2 + 3], {n, 0, 50}] (* Vincenzo Librandi, Jun 08 2016 *)
PROG
(PARI) triprimes(n) = { sr = 0; for(j=1, n, x = j*(j+1)/2+2; z = prime(x); sr+=1.0/z; print1(z" "); ); print(); print(sr); }
(Magma) [NthPrime(n*(n+1) div 2+3): n in [0..50]]; // Vincenzo Librandi, Jun 08 2016
CROSSREFS
Cf. A000040, A078721 (after 7, primes in third diagonal of triangle in comment).
Sequence in context: A260791 A155006 A201474 * A191022 A262958 A155757
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 April 25 09:25 EDT 2024. Contains 371967 sequences. (Running on oeis4.)