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

A364696
Nonnegative integers k such that the sum of the first k primes is a pentagonal number.
5
0, 2, 77, 24587, 48070640, 471412484, 7471587112
OFFSET
1,2
EXAMPLE
2 is a term because the sum of the first 2 primes (2 + 3 = 5) is a pentagonal number.
MATHEMATICA
A364696list[kmax_]:=Module[{p=0}, Join[{0}, Table[If[IntegerQ[(Sqrt[24(p+=Prime[k])+1]+1)/6], k, Nothing], {k, kmax}]]]; A364696list[25000] (* Paolo Xausa, Oct 06 2023 *)
KEYWORD
nonn,hard,more
AUTHOR
Paolo Xausa, Aug 03 2023
EXTENSIONS
a(5) from Michel Marcus, Aug 04 2023
a(6)-a(7) from Hugo Pfoertner, Aug 04 2023
STATUS
approved