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

A013824
a(n) = 2^(5*n + 3).
2
8, 256, 8192, 262144, 8388608, 268435456, 8589934592, 274877906944, 8796093022208, 281474976710656, 9007199254740992, 288230376151711744, 9223372036854775808, 295147905179352825856, 9444732965739290427392
OFFSET
0,1
FORMULA
From Philippe Deléham, Nov 24 2008: (Start)
a(n) = 32*a(n-1), n > 0; a(0)=8.
G.f.: 8/(1-32*x).
a(n) = 8*A009976(n). (End)
PROG
(Magma) [2^(5*n+3): n in [0..15]]; // Vincenzo Librandi, Jul 07 2011
(PARI) a(n)=2^(5*n+3) \\ Charles R Greathouse IV, Jul 11 2016
CROSSREFS
Cf. A000079 (2^n), A016885 (5*n+3).
Sequence in context: A291850 A130034 A128787 * A010044 A374283 A024290
KEYWORD
nonn,easy
STATUS
approved