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

A171739
a(n) = 2^(n*(n-1)/2)*3^(n*(n+1)/2).
1
1, 3, 54, 5832, 3779136, 14693280768, 342764853755904, 47976111050506371072, 40290721869103654477234176, 203018823308689211155302473269248, 6137885950748052085508841340966822477824, 1113403476497577147178633950236927694314586243072
OFFSET
0,2
LINKS
FORMULA
a(-n) = A081955(n).
a(n+1)*a(n-1) = 6*a(n)^2.
G.f.: 1 / (1 - 6^1 / 2 * x / (1 - (6^1 - 1) * 6^1 / 2 * x / (1 - 6^2 / 2 * x / (1 - (6^2 - 1) * 6^2 / 2 * x / ... )))). - Michael Somos, Jan 03 2013
EXAMPLE
1 + 3*x + 54*x^2 + 5832*x^3 + 3779136*x^4 + 14693280768*x^5 + 342764853755904*x^6 + ...
MAPLE
A171739:=n->2^(n*(n-1)/2)*3^(n*(n+1)/2): seq(A171739(n), n=0..15); # Wesley Ivan Hurt, Feb 12 2017
MATHEMATICA
Table[2^(n*(n-1)/2) * 3^(n*(n+1)/2), {n, 0, 20}] (* Vincenzo Librandi, Jan 03 2013 *)
PROG
(PARI) {a(n) = 2^(n*(n-1)/2) * 3^(n*(n+1)/2)}
CROSSREFS
Cf. A081955.
Sequence in context: A054545 A158103 A174579 * A157568 A156911 A214006
KEYWORD
nonn,easy
AUTHOR
Michael Somos, Dec 17 2009
STATUS
approved