A230540 a(n) = 2*n*3^(2*n-1).
0, 6, 108, 1458, 17496, 196830, 2125764, 22320522, 229582512, 2324522934, 23245229340, 230127770466, 2259436291848, 22029503845518, 213516729579636, 2058911320946490, 19765548681086304, 189008059262887782, 1801135623563989452, 17110788423857899794
Offset: 0
Links
- Bruno Berselli, Table of n, a(n) for n = 0..100
- Index entries for linear recurrences with constant coefficients, signature (18,-81).
Crossrefs
Programs
-
Magma
[2*n*3^(2*n-1): n in [0..20]];
-
Mathematica
Table[2 n 3^(2 n - 1), {n, 0, 20}]
-
PARI
a(n) = 2*n*3^(2*n-1); \\ Michel Marcus, Oct 23 2013
Comments