|
| |
|
|
A034964
|
|
Sums of five consecutive primes.
|
|
17
| |
|
|
28, 39, 53, 67, 83, 101, 119, 139, 161, 181, 199, 221, 243, 263, 287, 311, 331, 351, 373, 395, 421, 449, 473, 497, 517, 533, 559, 587, 617, 647, 683, 707, 733, 759, 787, 811, 839, 863, 891, 917, 941, 961, 991, 1023, 1057, 1089, 1123, 1151, 1169, 1193
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 0,1
|
|
|
COMMENTS
| Except for the first term, all terms are odd. - Alonso del Arte, Dec 30 2011
|
|
|
REFERENCES
| Owen O'Shea & Underwood Dudley, The Magic Numbers of the Professor. Mathematical Association of America (2007): p. 62
|
|
|
EXAMPLE
| E.g. 28 = 2 + 3 + 5 + 7 + 11.
39 = 3 + 5 + 7 + 11 + 13.
|
|
|
MATHEMATICA
| Plus@@@Partition[Prime[Range[6! ]], 5, 1] (* From Vladimir Orlovsky (4vladimir(AT)gmail.com), Feb 18 2010 *)
|
|
|
PROG
| (SAGE) BB = primes_first_n(60) list = [] for i in range(55): list.append(BB[i]+BB[i+1]+BB[i+2]+BB[i+3]+BB[i+4]) list # Zerinvary Lajos (zerinvarylajos(AT)yahoo.com), May 14 2007
(MAGMA) [&+[ NthPrime(n+k): k in [0..4] ]: n in [1..100] ]; // Vincenzo Librandi, Apr 03 2011
|
|
|
CROSSREFS
| Cf. A001043, A011974, A034707.
Cf. A131686, sums of five consecutive squares of primes.
Sequence in context: A096430 A204822 A179166 * A195897 A109798 A084807
Adjacent sequences: A034961 A034962 A034963 * A034965 A034966 A034967
|
|
|
KEYWORD
| nonn,easy
|
|
|
AUTHOR
| Patrick De Geest (pdg(AT)worldofnumbers.com), Oct 15 1998.
|
| |
|
|