login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo

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 60, we have over 367,000 sequences, and we’ve crossed 11,000 citations (which often say “discovered thanks to the OEIS”).

Other ways to Give
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A249490 a(n) = Sum_{m=0..floor((n-1)/2)} prime((n-m)(n-m-1)/2+m+1). 1
2, 3, 12, 28, 63, 113, 208, 296, 473, 657, 946, 1236, 1661, 2071, 2688, 3228, 4059, 4811, 5898, 6858, 8209, 9433, 11116, 12572, 14637, 16395, 18872, 21046, 23935, 26405, 29836, 32742, 36695, 40007, 44480, 48254, 53405, 57681, 63488, 68284, 74791, 80149, 87374 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Arrange the prime numbers into a triangle, with 2 at the top, 3 and 5 in the second row, 7, 11 and 13 in the third row, and so on:
2
3 5
7 11 13
17 19 23 29
31 37 41 43 47
...
The n-th term in the sequence is then the sum of the numbers in the upward diagonal beginning on the n-th row of this triangle.
LINKS
FORMULA
a(n) = Sum_{m=0..floor((n-1)/2)} prime((n-m)(n-m-1)/2+m+1).
EXAMPLE
a(1) = 2; a(2) = 3; a(3) = 7+5 = 12; a(4) = 17+11 = 28.
MAPLE
A249490:=n->add(ithprime((n-m)*(n-m-1)/2+m+1), m=0..floor((n-1)/2)): seq(A249490(n), n=1..50); # Wesley Ivan Hurt, Nov 07 2014
MATHEMATICA
Table[Sum[Prime[(n - m) (n - m - 1)/2 + m + 1], {m, 0, Floor[(n - 1)/2]}], {n, 50}] (* Wesley Ivan Hurt, Nov 07 2014 *)
PROG
(MATLAB/Octave)
p=primes(10000); a=[];
for n=1:30
m=0:floor((n-1)/2);
a=[a, sum(p((n-m).*(n-m-1)./2 + m + 1))];
end
a
(PARI) a(n) = sum(m=0, (n-1)\2, prime((n-m)*(n-m-1)/2+m+1)); \\ Michel Marcus, Nov 04 2014
CROSSREFS
Sequence in context: A173669 A136703 A349016 * A075269 A215602 A325628
KEYWORD
nonn,easy
AUTHOR
George Stagg, Oct 30 2014
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 December 1 23:26 EST 2023. Contains 367503 sequences. (Running on oeis4.)