OFFSET
1,1
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
FORMULA
a(n) = prime(2*n) + prime(2*n+2).
EXAMPLE
10 is in the sequence since it is the sum of 3 and 7, which are the 2nd and 4th prime numbers.
20 is in the sequence since it is the sum of 7 and 13, the 4th and 6th prime numbers.
MATHEMATICA
Table[Prime[2 n] + Prime[2 n + 2], {n, 80}]
Total/@Partition[Prime[Range[2, 120, 2]], 2, 1] (* Harvey P. Dale, Aug 20 2024 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Wesley Ivan Hurt, Jun 06 2021
STATUS
approved