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

A002066
a(n) = 10*4^n.
3
10, 40, 160, 640, 2560, 10240, 40960, 163840, 655360, 2621440, 10485760, 41943040, 167772160, 671088640, 2684354560, 10737418240, 42949672960, 171798691840, 687194767360, 2748779069440, 10995116277760, 43980465111040, 175921860444160, 703687441776640
OFFSET
0,1
FORMULA
From Philippe Deléham, Nov 23 2008: (Start)
a(n) = 4*a(n-1), n > 0; a(0)=10.
G.f.: 10/(1-4*x). (End)
MATHEMATICA
10*4^Range[0, 100] (* Vladimir Joseph Stephan Orlovsky, Jun 09 2011 *)
PROG
(Magma) [10*4^n: n in [0..30]]; // Vincenzo Librandi, May 19 2011
(PARI) a(n)=10*4^n \\ Charles R Greathouse IV, Apr 18 2012
CROSSREFS
Pairwise sums of A081294
Sequence in context: A013977 A075060 A279219 * A061991 A060580 A118266
KEYWORD
nonn,easy
STATUS
approved