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.

A136557 a(n) = Sum_{k=0..n} binomial(2^k + n-k-1, k).

Original entry on oeis.org

1, 2, 6, 45, 1436, 171836, 68149425, 89431630740, 396956313475102, 6099399658235428041, 331007760926212498510464, 64484289650612910347505873728, 45677712418497545460138258802186905
Offset: 0

Views

Author

Paul D. Hanna, Jan 07 2008

Keywords

Crossrefs

Programs

  • Magma
    [(&+[Binomial(2^k +n-k-1, k): k in [0..n]]): n in [0..20]]; // G. C. Greubel, Mar 15 2021
  • Maple
    A136557:= n-> add(binomial(2^k +n-k-1, k), k=0..n); seq(A136557(n), n=0..20); # G. C. Greubel, Mar 15 2021
  • Mathematica
    Table[Sum[Binomial[2^k+n-k-1, k], {k, 0, n}], {n, 0, 15}] (* Vaclav Kotesovec, Jul 02 2016 *)
  • PARI
    a(n)=sum(k=0,n,binomial(2^k+n-k-1,k))
    
  • PARI
    /* As coefficient of x^n in the g.f.: */ {a(n)=polcoeff(sum(i=0,n,((1+2^i*x+x*O(x^n))*(1-x-2^i*x^2))^-1*log(1+2^i*x+x*O(x^n))^i/i!),n)}
    
  • Sage
    [sum(binomial(2^k +n-k-1, k) for k in (0..n)) for n in (0..20)] # G. C. Greubel, Mar 15 2021
    

Formula

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