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.

A328810 a(n) = Sum_{i=0..n} binomial(n,i)*Sum_{j=0..i} binomial(i,j)^n.

Original entry on oeis.org

1, 3, 11, 93, 2583, 260613, 99915029, 144072750195, 808177412109895, 16892305881120020613, 1388286655114683125139201, 423109739462061163278604529475, 511885816860737850466697173188711669, 2296554708428991868313593456071099604464483
Offset: 0

Views

Author

Seiichi Manyama, Oct 28 2019

Keywords

Crossrefs

Main diagonal of A328807.

Programs

  • Mathematica
    Table[Sum[Binomial[n, i]*Sum[Binomial[i, j]^n, {j, 0, i}], {i, 0, n}], {n, 0, 15}] (* Vaclav Kotesovec, Oct 28 2019 *)
  • PARI
    {a(n) = sum(i=0, n, binomial(n, i)*sum(j=0, i, binomial(i, j)^n))}

Formula

a(n) ~ A167010(n). - Vaclav Kotesovec, Oct 28 2019