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

A078746
a(n) = prime(2*n*(n+1)+1).
1
2, 11, 41, 97, 179, 283, 439, 617, 829, 1087, 1381, 1697, 2081, 2467, 2909, 3433, 3929, 4517, 5119, 5801, 6481, 7237, 8059, 8863, 9739, 10663, 11701, 12659, 13729, 14867, 15973, 17239, 18443, 19843, 21179, 22549, 23971, 25541, 27043, 28657
OFFSET
0,1
COMMENTS
Central elements of odd-length rows of the triangle of primes:
. 2,
. 3, 5,
. 7, 11, 13,
. 17, 19, 23, 29,
. 31, 37, 41, 43, 47,
. 53, 59, 61, 67, 71, 73, etc.
The sum of the reciprocals of the terms converges by comparison with sum_{n>=1} 1/n^2, since 1/a(n) < 1/(2n(n+1)+1) < 1/n^2. The limit is about 0.6471.
LINKS
FORMULA
a(n) = A000040(A001844(n)). - David James Sycamore, Aug 01 2018
MATHEMATICA
Table[Prime[2n(n+1)+1], {n, 0, 40}] (* Harvey P. Dale, May 02 2012 *)
PROG
(PARI) triprimes(n) = { sr = 0; for(j= 1, n, x = 2*j*(j-1) + 1; z = prime(x); sr+=1.0/z; print1(z" "); ); print(); print(sr); }
(Magma) [NthPrime(2*n*(n + 1)+1): n in [0..50]]; // Vincenzo Librandi, Jun 08 2016
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Cino Hilliard, Dec 21 2002
EXTENSIONS
Edited by Dean Hickerson, Dec 23 2002
STATUS
approved