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

A132477
Row sums of triangle A132476.
2
1, 4, 12, 24, 48, 96, 192, 384, 768, 1536, 3072, 6144, 12288, 24576, 49152, 98304, 196608, 393216, 786432, 1572864, 3145728, 6291456, 12582912, 25165824, 50331648, 100663296, 201326592, 402653184, 805306368, 1610612736, 3221225472, 6442450944, 12884901888
OFFSET
0,2
COMMENTS
A007283 = 3*2^n: (3, 6, 12, 24, 48, ...).
FORMULA
a(0) = 1, a(1) = 4, a(n) = 3*2^n for n>1.
G.f.: -(1+2*x+4*x^2)/(-1+2*x). - R. J. Mathar, Nov 14 2007
a(n) = 2*a(n-1) for n>1. - Harvey P. Dale, May 31 2017
EXAMPLE
a(3) = 24 = sum of row 3 terms of triangle A132476: (3 + 7 + 13 + 1).
MATHEMATICA
Join[{1, 4}, 3 2^Range[2, 40]] (* or *) Join[{1, 4}, NestList[2#&, 12, 40]] (* Harvey P. Dale, May 31 2017 *)
CROSSREFS
Sequence in context: A160619 A352668 A330011 * A102651 A102652 A279626
KEYWORD
nonn
AUTHOR
Gary W. Adamson, Aug 22 2007
STATUS
approved