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

A002089
a(n) = 11*4^n.
9
11, 44, 176, 704, 2816, 11264, 45056, 180224, 720896, 2883584, 11534336, 46137344, 184549376, 738197504, 2952790016, 11811160064, 47244640256, 188978561024, 755914244096, 3023656976384, 12094627905536, 48378511622144, 193514046488576, 774056185954304
OFFSET
0,1
COMMENTS
Subsequence of A000069, the odious numbers. - Reinhard Zumkeller, Aug 26 2007
FORMULA
From Philippe Deléham, Nov 23 2008: (Start)
a(n) = 4*a(n-1); a(0)=11.
G.f.: 11/(1-4*x). (End)
a(n) = 11*A000302(n). - Michel Marcus, Nov 13 2013
MAPLE
A002089:=n->11*4^n; seq(A002089(n), n=0..100); # Wesley Ivan Hurt, Nov 12 2013
MATHEMATICA
11*4^Range[0, 100] (* Vladimir Joseph Stephan Orlovsky, Jun 09 2011 *)
NestList[4#&, 11, 30] (* Harvey P. Dale, Jun 19 2014 *)
PROG
(Magma) [11*4^n: n in [0..30]]; // Vincenzo Librandi, May 31 2011
(PARI) a(n)=11*4^n \\ Charles R Greathouse IV, Apr 18 2012
CROSSREFS
Bisection of A005015. Half the first differences of A072261.
Sequence in context: A022816 A120537 A068596 * A042521 A041228 A022280
KEYWORD
nonn,easy
STATUS
approved