|
Search: id:A067339
|
|
|
| A067339 |
|
Divide the natural numbers in sets of consecutive numbers, starting with {1,2}, each set with number of elements equal to the sum of elements of the preceding set. The final element of the n-th set gives a(n). |
|
+0 1
|
|
| 2, 5, 17, 155, 12092, 73114280, 2672849006516342, 3572060905817699556013859788655, 6379809557435582128907282471160505774257452233828787563248842
(list; graph; listen)
|
|
|
OFFSET
|
1,1
|
|
|
COMMENT
|
The sets begin {1, 2}, {3, 4, 5}, {6, 7, 8, ..., 17}, ...
|
|
FORMULA
|
a(n)=a(n-1)*(a(n-1)+1)/2 + 2
|
|
PROGRAM
|
(PARI) a(n) = if(n<2, n=2, a(n-1)*(a(n-1)+1)/2+2)
|
|
CROSSREFS
|
Cf. A006894, A002658. Partial sums of A067338.
Sequence in context: A097980 A074046 A123374 this_sequence A096848 A132198 A111635
Adjacent sequences: A067336 A067337 A067338 this_sequence A067340 A067341 A067342
|
|
KEYWORD
|
easy,nonn
|
|
AUTHOR
|
Floor van Lamoen (fvlamoen(AT)hotmail.com), Jan 16 2002
|
|
EXTENSIONS
|
More terms from Jason Earls (zevi_35711(AT)yahoo.com), Jan 16 2002
|
|
|
Search completed in 0.002 seconds
|