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

A063017
a(n) = Catalan(n)*(3^(n+1) - 2^(n+1) + 1)/2.
2
1, 3, 20, 165, 1484, 13986, 135960, 1352637, 13707980, 141061206, 1470489800, 15500280978, 164967244792, 1770548369700, 19143828730800, 208347968093085, 2280730450967820, 25096531231958670, 277445318198433000
OFFSET
0,2
LINKS
FORMULA
a(n) = Catalan(n)*(3^(n+1) - 2^(n+1) + 1)/2;
o.g.f: -(sqrt(1-4x) - sqrt(1-8x)+ sqrt(1-12x) -1)/(4x).
MATHEMATICA
Table[CatalanNumber[n] (3^(n + 1) - 2^(n + 1) + 1)/2, {n, 0, 20}] (* Wesley Ivan Hurt, Jan 30 2014 *)
PROG
(PARI) a(n)={binomial(2*n, n)/(n + 1)*(3^(n+1) - 2^(n+1) + 1)/2} \\ Harry J. Smith, Aug 16 2009
CROSSREFS
Sequence in context: A192509 A336653 A012882 * A341963 A276315 A145329
KEYWORD
easy,nonn
AUTHOR
Olivier Gérard, Jul 04 2001
EXTENSIONS
Formula corrected by Harry J. Smith, Aug 16 2009
STATUS
approved