login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

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