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.

A227406 Number of unimodal functions f:[n]->[2^n].

Original entry on oeis.org

1, 2, 16, 372, 24616, 5014592, 3349471840, 7649590386464, 61356625102897216, 1758844330913892684288, 182379122144778004351027200, 69026760045145802122822210022400, 96048744530120196897251255933762037760, 494360393380904255996973467025921794482614272
Offset: 0

Views

Author

Alois P. Heinz, Sep 21 2013

Keywords

Crossrefs

Programs

  • Maple
    a:= n-> sum(binomial(n+2*j-1, 2*j), j=0..2^n-1):
    seq(a(n), n=0..20);
  • Mathematica
    Table[Sum[Binomial[n+2*j-1,2*j],{j,0,2^n-1}],{n,0,15}] (* Vaclav Kotesovec, Sep 22 2013 *)

Formula

a(n) = Sum_{j=0..2^n-1} C(n+2*j-1,2*j).
a(n) = A071921(n,2^n).
a(n) ~ 2^(n^2+n-1)/n!. - Vaclav Kotesovec, Sep 22 2013