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

A109726
Divide primes in groups with 2n elements and add together.
6
0, 5, 36, 156, 442, 954, 1854, 3154, 4998, 7514, 10784, 14786, 19932, 26148, 33448, 42340, 52208, 64322, 77898, 93116, 110224, 129978, 151990, 175224, 201584, 231272, 263500, 298590, 335856, 376616, 420984, 469894, 521740, 577304, 634990
OFFSET
0,2
COMMENTS
First difference of A322420.
LINKS
FORMULA
a(n) = A007504(n*(n+1)) - A007504(n*(n-1)).
MATHEMATICA
f[n_] := Sum[Prime[k], {k, n}]; Table[f[n*(n + 1)] - f[n*(n - 1)], {n, 0, 34}]
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Giovanni Teofilatto, Aug 10 2005
EXTENSIONS
Edited and extended by Ray Chandler, Aug 11 2005
STATUS
approved