cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A136637 a(n) = Sum_{k=0..n} C(n, k) * C(2^k*3^(n-k), n).

Original entry on oeis.org

1, 5, 72, 6089, 3326498, 12405917044, 336474648380394, 69883583587428350874, 115099747754889610404191160, 1536533057081060754026861201898620, 168527150638482484315370462123098294514192
Offset: 0

Views

Author

Vladeta Jovovic and Paul D. Hanna, Jan 15 2008

Keywords

Comments

Equals row sums of triangle A136635.

Examples

			More generally,
if Sum_{n>=0} log(1 + (p^n + r*q^n)*x )^n / n! = Sum_{n>=0} b(n)*x^n,
then b(n) = Sum_{k=0..n} C(n,k)*r^(n-k) * C(p^k*q^(n-k), n)
(a result due to _Vladeta Jovovic_, Jan 13 2008).
		

Crossrefs

Cf. A136635 (triangle), A014070 (main diagonal), A136393 (column 0), A136636 (column 1), A136638 (antidiagonal sums).

Programs

  • Mathematica
    Table[Sum[Binomial[n,k]*Binomial[2^k*3^(n-k),n], {k, 0, n}], {n, 0, 15}] (* Vaclav Kotesovec, Jul 02 2016 *)
  • PARI
    {a(n)=sum(k=0,n,binomial(n,k)*binomial(2^k*3^(n-k),n))}
    
  • PARI
    /* Using g.f.: */ {a(n)=polcoeff(sum(i=0,n,log(1+(2^i+3^i)*x)^i/i!),n,x)}

Formula

G.f.: A(x) = Sum_{n>=0} log(1 + (2^n + 3^n)*x )^n / n!.
a(n) ~ 3^(n^2) / n!. - Vaclav Kotesovec, Jul 02 2016