A169604 a(n) = 3*6^n.
3, 18, 108, 648, 3888, 23328, 139968, 839808, 5038848, 30233088, 181398528, 1088391168, 6530347008, 39182082048, 235092492288, 1410554953728, 8463329722368, 50779978334208, 304679870005248, 1828079220031488, 10968475320188928, 65810851921133568, 394865111526801408
Offset: 0
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..300
- Index entries for linear recurrences with constant coefficients, signature (6).
Crossrefs
Programs
-
Magma
[ 3*6^n: n in [0..19] ];
-
Mathematica
3*6^Range[0, 25] (* Paolo Xausa, Jan 17 2025 *)
-
PARI
a(n)=3*6^n \\ Charles R Greathouse IV, Oct 16 2015
Formula
a(n) = 6*a(n-1) for n > 0; a(0) = 3.
G.f.: 3/(1-6*x).
Comments