|
| |
|
|
A078746
|
|
prime(2n(n+1)+1), where prime(n)=A000040(n) is the n-th prime.
|
|
0
| |
|
|
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
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 0,1
|
|
|
COMMENTS
| Central elements of odd-length rows of the triangle of primes 2; 3,5; 7,11,13; ...
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.
|
|
|
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); }
|
|
|
CROSSREFS
| Cf. A078721.
Sequence in context: A168367 A080093 A175447 * A066593 A173580 A062256
Adjacent sequences: A078743 A078744 A078745 * A078747 A078748 A078749
|
|
|
KEYWORD
| easy,nonn
|
|
|
AUTHOR
| Cino Hilliard (hillcino368(AT)gmail.com), Dec 21 2002
|
|
|
EXTENSIONS
| Edited by Dean Hickerson (dean.hickerson(AT)yahoo.com), Dec 23 2002
|
| |
|
|