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

A086221
Bisection of A086652.
2
13, 58, 244, 1000, 4048, 16288, 65344, 261760, 1047808, 4192768, 16774144, 67102720, 268423168, 1073717248, 4294918144, 17179770880, 68719280128, 274877513728, 1099510841344, 4398044938240, 17592182898688, 70368737886208
OFFSET
1,1
COMMENTS
(a(n)-2^(n-1))/2 = A006516(n+1).
LINKS
FORMULA
a(n) = 2^(2n+2)-3*2^(n-1).
a(n+1) = 4*a(n)+3*2^n.
MATHEMATICA
Table[2^(2n+2)-3*2^(n-1), {n, 30}] (* or *) nxt[{n_, a_}]:={n+1, 4a+3*2^n}; NestList[nxt, {1, 13}, 30][[All, 2]] (* Harvey P. Dale, Nov 15 2021 *)
CROSSREFS
Sequence in context: A365749 A055833 A103220 * A272386 A171749 A141917
KEYWORD
nonn,easy
AUTHOR
Marco Matosic, Jul 27 2003
EXTENSIONS
Edited and extended by David Wasserman, Feb 17 2005
STATUS
approved