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-3 of 3 results.

A014507 Number of digraphs with loops, having unlabeled (non-isolated) nodes and n labeled edges.

Original entry on oeis.org

1, 2, 13, 162, 3075, 80978, 2784067, 119971162, 6289972169, 392257225754, 28582571639293, 2398695602082442, 229094801646110203, 24652935339990534970, 2963620352166634246995, 395067805289398293647026, 58025593661340099613984593, 9336949406574071339557552946
Offset: 0

Views

Author

Simon Plouffe, Gilbert Labelle (gilbert(AT)lacim.uqam.ca)

Keywords

References

  • G. Paquin, Dénombrement de multigraphes enrichis, Mémoire, Math. Dept., Univ. Québec à Montréal, 2004.

Crossrefs

Programs

  • Maple
    A014507 := proc(n)
        add(combinat[stirling1](n,k)*combinat[bell](2*k),k=0..n) ;
    end proc:
    seq(A014507(n),n=0..10) ; # R. J. Mathar, Apr 30 2017
  • Mathematica
    a[n_] := Sum[StirlingS1[n, k]*BellB[2*k], {k, 0, n}];
    Table[a[n], {n, 0, 14}] (* Jean-François Alcover, Jan 21 2018, from Vladeta Jovovic's formula *)
  • PARI
    /* From Vladeta Jovovic's formula: */
    {Stirling1(n, k)=n!*polcoeff(binomial(x, n), k)}
    {Bell(n)=n!*polcoeff(exp(exp(x+x*O(x^n))-1),n)}
    {a(n)=sum(k=0, n, Stirling1(n, k)*Bell(2*k))}

Formula

a(n) = Sum_{k=0..n} Stirling1(n, k)*Bell(2*k). - Vladeta Jovovic, Jun 21 2003
E.g.f.: exp(-1)*Sum_{n>=0} (1+x)^(n^2)/n!. - Paul D. Hanna, Jul 03 2011
a(n) = n!*exp(-1)*Sum_{k>=sqrt(n)} binomial(k^2,n)/k!. - Paul D. Hanna, Jul 03 2011

A211250 E.g.f.: exp(-1)*Sum_{n>=0} (1+x)^(n^3)/n!.

Original entry on oeis.org

1, 5, 198, 20548, 4088918, 1341552690, 661685880676, 460785157967228, 432879460822014552, 529918744425680488240, 822575286838815581568992, 1583737023708711008926884072, 3713773722396456674797120593784, 10445266376618187161982580673417192
Offset: 0

Views

Author

Paul D. Hanna, Apr 07 2012

Keywords

Examples

			E.g.f.: A(x) = 1 + 5*x + 198*x^2/2! + 20548*x^3/3! + 4088918*x^4/4! +...
such that
A(x) = exp(-1)*(1 + (1+x) + (1+x)^8/2! + (1+x)^27/3! + (1+x)^64/4! +...).
		

Crossrefs

Programs

  • PARI
    {Stirling1(n, k)=n!*polcoeff(binomial(x, n), k)}
    {Bell(n)=n!*polcoeff(exp(exp(x+x*O(x^n))-1), n)}
    {a(n)=sum(k=0, n, Stirling1(n, k)*Bell(3*k))}
    for(n=0,15,print1(a(n),", "))

Formula

a(n) = Sum_{k=0..n} Stirling1(n, k)*Bell(3*k).
a(n) = n!*exp(-1)*Sum_{k>=[n^(1/3)]} binomial(k^3,n)/k!.

A211252 E.g.f.: exp(-1)*Sum_{n>=0} (1+x)^(n^5)/n!.

Original entry on oeis.org

1, 52, 115923, 1382610724, 51715861759515, 4638073139045397206, 846679440053068198564757, 281582422101970811697025996458, 157442703858164474987714673019721909, 139252837198831456324098952617013102583100, 185718002275320639405130518085966960592675564591
Offset: 0

Views

Author

Paul D. Hanna, Apr 07 2012

Keywords

Examples

			E.g.f.: A(x) = 1 + 52*x + 115923*x^2/2! + 1382610724*x^3/3! + 51715861759515*x^4/4! +...
such that
A(x) = exp(-1)*(1 + (1+x) + (1+x)^32/2! + (1+x)^243/3! + (1+x)^1024/4! +...).
		

Crossrefs

Programs

  • PARI
    {Stirling1(n, k)=n!*polcoeff(binomial(x, n), k)}
    {Bell(n)=n!*polcoeff(exp(exp(x+x*O(x^n))-1), n)}
    {a(n)=sum(k=0, n, Stirling1(n, k)*Bell(5*k))}
    for(n=0,15,print1(a(n),", "))

Formula

a(n) = Sum_{k=0..n} Stirling1(n, k)*Bell(5*k).
a(n) = n!*exp(-1)*Sum_{k>=[n^(1/5)]} binomial(k^5,n)/k!.
Showing 1-3 of 3 results.