OFFSET
-1,2
COMMENTS
a(n) = a(0) * product(i=1,2,...k)r(i)^C(n,i), C(n,i)=0 for all i > n.
Here, it is submitted a special case of the geometric-geometric sequence having finite ratios, that is, k consecutive rows of ratios, whose first terms are r(1), r(2), r(3),..., r(k), the last row (k-th row) being of a constant ratio, with k=3, a(0)=r(1)=r(2)=r(3)=3.
FORMULA
a(n) = a(n-1)*(2^(1+n*(n-1)/2)), with a(0)=3
EXAMPLE
a(3) = 3^((6+5*3+3^3)/6) = 3^((6+15+27)/6) = 3^(48/6) = 3^8 = 6561.
PROG
(Maxima) A218149(n):=3^((6+5*n+n^3)/6)$
makelist(A218149(n), n, -1, 10); /* Martin Ettl, Oct 31 2012 */
(PARI) a(n)=3^(n*(5+n^2)/6+1) \\ Charles R Greathouse IV, Jan 06 2013
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Mokhtar Mohamed, Oct 22 2012
STATUS
approved