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

A072976
a(n) = 2^n*binomial(3*n,n)*(3*n+2).
1
2, 30, 480, 7392, 110880, 1633632, 23761920, 342328320, 4895294976, 69589977600, 984515051520, 13872712089600, 194821130649600, 2728095278727168, 38106727702855680, 531128942672216064
OFFSET
0,1
LINKS
FORMULA
Sum_{k>=0} 1/a(k) = (7*Pi - 24*log(2))/10 = 0.53556162416898...
MATHEMATICA
Table[2^n Binomial[3n, n](3n+2), {n, 0, 20}] (* Harvey P. Dale, Aug 20 2011 *)
PROG
(PARI) a(n)=2^n*binomial(3*n, n)*(3*n+2)
(Magma) [2^n*Binomial(3*n, n)*(3*n+2): n in [0..20]]; // Vincenzo Librandi, Aug 20 2011
CROSSREFS
Sequence in context: A219706 A318477 A219869 * A143414 A099046 A020547
KEYWORD
easy,nonn
AUTHOR
Benoit Cloitre, Aug 13 2002
EXTENSIONS
a(1) corrected by Harvey P. Dale, Aug 20 2011
STATUS
approved