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.

Showing 1-2 of 2 results.

A336270 a(n) = Sum_{k=0..n} Sum_{j=0..k} (binomial(n,k) * binomial(k,j))^n.

Original entry on oeis.org

1, 3, 15, 381, 67635, 83118753, 813824623689, 58040410068847251, 32150480245981639533315, 154935057570894645075940703673, 5474671509704049919709361235659936825, 1600436120524545216094358662984789029130593831
Offset: 0

Views

Author

Ilya Gutkovskiy, Jul 15 2020

Keywords

Crossrefs

Programs

  • Mathematica
    Table[Sum[Sum[(Binomial[n, k] Binomial[k, j])^n, {j, 0, k}], {k, 0, n}], {n, 0, 11}]
    Table[(n!)^n SeriesCoefficient[Sum[x^k/(k!)^n, {k, 0, n}]^3, {x, 0, n}], {n, 0, 11}]
  • PARI
    a(n) = sum(k=0, n, sum(j=0, k, (binomial(n,k) * binomial(k,j))^n)); \\ Michel Marcus, Jul 16 2020

Formula

a(n) = (n!)^n * [x^n] (Sum_{k>=0} x^k / (k!)^n)^3.

A180350 G.f.: Sum_{n>=0} a(n)*x^n/n!^5 = [ Sum_{n>=0} x^n/n!^5 ]^3.

Original entry on oeis.org

1, 3, 99, 9237, 775971, 83118753, 10657602909, 1463886204147, 215566192274211, 33677584957306713, 5492032622227428849, 928229455634614797447, 161727023896151286167901, 28905146810167510775300463
Offset: 0

Views

Author

Paul D. Hanna, Jan 20 2011

Keywords

Examples

			G.f.: A(x) = 1 + 3*x + 99*x^2/2!^5 + 9237*x^3/3!^5 + 775971*x^4/4!^5 +...
A(x)^(1/3) = 1 + x + x^2/2!^5 + x^3/3!^5 + x^4/4!^5 +...
		

Crossrefs

Programs

  • PARI
    {a(n)=if(n<0, 0, n!^5*polcoeff(sum(m=0, n, x^m/m!^5+x*O(x^n))^3, n))}
    
  • PARI
    {a(n)=sum(k=0, n, binomial(n, k)^5*sum(j=0, k, binomial(k, j)^5))}

Formula

a(n) = Sum_{k=0..n} C(n,k)^5 * Sum_{j=0..k} C(k,j)^5 = Sum_{k=0..n} C(n,k)^5 * A005261(k).
Showing 1-2 of 2 results.