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

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A096208 Primes expressible as a sum of odd-indexed primes. 0
2, 7, 89, 659, 1181, 5021, 9923, 10909, 11941, 17959, 26879, 48437, 53077, 65707, 71191, 74051, 119723, 135019, 147151, 173053, 226381, 293177, 323797, 362911, 411449, 470621, 478321, 542251, 575837, 592987, 646259, 721141, 730819, 740599 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Subsequence of primes of A077131. - Michel Marcus, Oct 21 2015
LINKS
EXAMPLE
a(3) = 89 because 89 = 2 + 5 + 11 + 17 + 23 + 31.
MATHEMATICA
Select[Table[Plus @@ Prime[2Range[i] - 1], {i, 1000}], PrimeQ[ # ] &]
PROG
(PARI) lista(nn) = {s = 0; add = 1; forprime(p=1, nn, if (add, s += p; if (isprime(s), print1(s, ", ")); ); add = ! add; ); } \\ Michel Marcus, Oct 21 2015
CROSSREFS
Cf. A077131.
Sequence in context: A119157 A079701 A327039 * A123995 A350754 A224439
KEYWORD
nonn
AUTHOR
Alonso del Arte, Jul 27 2004
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 April 19 18:05 EDT 2024. Contains 371798 sequences. (Running on oeis4.)