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

A177411
a(n) = binomial((n+1)*2^(n+1), n)/(n+1).
2
1, 4, 92, 10416, 5258872, 11297164096, 100955979001152, 3709635244861142784, 556796318904269731012544, 339945532169833436692992549888, 841788571395046141591475043524725760
OFFSET
0,2
FORMULA
a(n) = [x^n] (1 + x)^((n+1)*2^(n+1))/(n+1).
a(n) = [x^n] Sum_{k=0..n} 2^k*(n+1)^(k-1) * log(1 + 2^k*x)^k/k!. - Paul D. Hanna, Jul 03 2010
MATHEMATICA
Table[Binomial[(n+1)2^(n+1), n]/(n+1), {n, 0, 20}] (* Harvey P. Dale, Feb 03 2019 *)
PROG
(PARI) {a(n)=binomial((n+1)*2^(n+1), n)/(n+1)}
(PARI) {a(n)=polcoeff(sum(k=0, n, 2^k*(n+1)^(k-1)*log(1+2^k*x +x*O(x^n))^k/k!), n)} \\ Paul D. Hanna, Jul 03 2010
CROSSREFS
Sequence in context: A012217 A012135 A221287 * A219891 A050878 A173362
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jun 26 2010
STATUS
approved