A272342 a(n) = 27*8^n.
27, 216, 1728, 13824, 110592, 884736, 7077888, 56623104, 452984832, 3623878656, 28991029248, 231928233984, 1855425871872, 14843406974976, 118747255799808, 949978046398464, 7599824371187712, 60798594969501696
Offset: 0
Links
- Index entries for linear recurrences with constant coefficients, signature (8).
Programs
-
Mathematica
nmax=120; 27*8^Range[0, nmax]
-
PARI
a(n) = 27*8^n; \\ Michel Marcus, Apr 27 2016
Formula
a(n) = 27*8^n = 2^3n + 2^(3n+1) + 2^(3n+3) + 2^(3n+4).
a(n) = 8*a(n-1), n>0; a(0)=27.
G.f.: 27/(1-8*x).
E.g.f.: 27*exp(8*x).
a(n) = 27*A001018(n). - Michel Marcus, Apr 26 2016
Comments