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

A113606
Binary power sequence: a(n) = a(n-1) + 2^a(n-2).
0
1, 1, 3, 5, 13, 45, 8237, 35184372097069
OFFSET
1,3
COMMENTS
The ninth term is too large to show here.
MATHEMATICA
RecurrenceTable[{a[1]==a[2]==1, a[n]==a[n-1]+2^a[n-2]}, a, {n, 8}] (* Harvey P. Dale, May 06 2012 *)
CROSSREFS
Cf. A000225.
Sequence in context: A057188 A128548 A321358 * A209002 A106879 A249762
KEYWORD
nonn
AUTHOR
Matt Wynne (mattwyn(AT)verizon.net), Aug 25 2008
STATUS
approved