|
Search: id:A096278
|
|
|
| A096278 |
|
Sums of successive sums of successive sums of successive primes. |
|
+0 1
|
|
| 33, 50, 72, 96, 120, 144, 172, 206, 240, 274, 308, 336, 364, 402, 444, 480, 514, 548, 578, 610, 648, 692, 742, 786, 816, 840, 864, 900, 960, 1024, 1070, 1108, 1152, 1196, 1236, 1278, 1320, 1362, 1404, 1444, 1488, 1530, 1560, 1592, 1650, 1728, 1790, 1824
(list; graph; listen)
|
|
|
OFFSET
|
1,1
|
|
|
COMMENT
|
The first term is always odd and may be prime.
|
|
FORMULA
|
Let f(n) = prime(n) + prime(n+1) f1(n) = f(n)+f(n+1) : SS of order 1 Then f2(n) = f1(n)+f1(n) : SS of order 2 is the general term of this sequence.
|
|
EXAMPLE
|
The first two terms of SS order 1 is 13 and 20. 13+20 = 33 the first term of the sequence.
|
|
PROGRAM
|
(PARI) g(n) = for(x=1, n, print1(f2(x)", ")) f(n) = return(prime(n)+prime(n+1)) f1(n) = return(f(n)+f(n+1)) f2(n) = return(f1(n)+f1(n+1))
|
|
CROSSREFS
|
Sequence in context: A111502 A080933 A020293 this_sequence A034815 A014976 A109407
Adjacent sequences: A096275 A096276 A096277 this_sequence A096279 A096280 A096281
|
|
KEYWORD
|
easy,nonn
|
|
AUTHOR
|
Cino Hilliard (hillcino368(AT)gmail.com), Jun 22 2004
|
|
|
Search completed in 0.002 seconds
|