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.

A162695 E.g.f. satisfies A(x) = exp( x*A(x) * exp(x*A(x)) ).

Original entry on oeis.org

1, 1, 5, 43, 549, 9341, 199303, 5122503, 154174121, 5321093689, 207228932811, 8991136486619, 430126003707997, 22494400020052533, 1276807091011902479, 78178242047074260751, 5136433584083525179857, 360458257425576984629873
Offset: 0

Views

Author

Paul D. Hanna, Jul 10 2009

Keywords

Examples

			E.g.f.: A(x) = 1 + x + 5*x^2/2! + 43*x^3/3! + 549*x^4/4! + 9341*x^5/5! +...
exp(x*A(x)) = 1 + x + 3*x^2/2! + 22*x^3/3! + 257*x^4/4! + 4136*x^5/5! +...
Log(A(x)) = x + 4*x^2/2! + 30*x^3/3! + 356*x^4/4! + 5780*x^5/5! +...;
compare log(A(x)) to the e.g.f. of A055779 given by:
x + 2*x^2/2! + 10*x^3/3! + 89*x^4/4! + 1156*x^5/5! +...
		

Crossrefs

Programs

  • Mathematica
    Flatten[{1,Table[Sum[Binomial[n,k] * (n+1)^(k-1) * k^(n-k),{k,0,n}],{n,1,20}]}] (* Vaclav Kotesovec, Jul 15 2014 *)
  • PARI
    a(n,m=1)=sum(k=0,n,binomial(n,k)*m*(n+m)^(k-1)*k^(n-k));
    
  • PARI
    /* Log(A(x)) = Sum_{n>=1} L(n)*x^n/n! where: */
    L(n)=if(n<1,0,sum(k=1,n,binomial(n,k)*n^(k-1)*k^(n-k)));

Formula

a(n) = Sum_{k=0..n} binomial(n,k) * (n+1)^(k-1) * k^(n-k).
Let A(x)^m = Sum_{n>=0} a(n,m)*x^n/n! with a(0,m)=1, then
a(n,m) = Sum_{k=0..n} binomial(n,k) * m*(n+m)^(k-1) * k^(n-k).
...
Let log(A(x)) = x*A(x)*exp(x*A(x)) = Sum_{n>=1} L(n)*x^n/n!, then
L(n) = Sum_{k=0..n} binomial(n,k) * n^(k-1) * k^(n-k) where
L(n) = n*A055779(n), where A055779(n) is the number of fat trees on n labeled vertices.
...
a(n) ~ s*sqrt((1+r*s)/(1+r*s*(3+r*s))) * n^(n-1) / (exp(n)*r^n), where r = 0.2222181377976171017... and s = 1.998622764215824983... are roots of the system of equations exp(r*s)*r*s*(1+r*s) = 1, exp(exp(r*s)*r*s) = s. - Vaclav Kotesovec, Jul 15 2014

A380425 E.g.f. A(x) satisfies A(x) = exp( 2 * x * A(x)^(1/2) * exp(x * A(x)^(1/2)) ).

Original entry on oeis.org

1, 2, 12, 116, 1592, 28472, 630028, 16649348, 512197456, 17993496176, 711065689364, 31231930472492, 1509776777566648, 79670350504209896, 4557716010219325468, 280992142281969312548, 18574365176584473753248, 1310583528463442480750048, 98318677221689347734929956
Offset: 0

Views

Author

Seiichi Manyama, Jan 24 2025

Keywords

Crossrefs

Programs

  • PARI
    a(n) = 2*sum(k=0, n, k^(n-k)*(n+2)^(k-1)*binomial(n, k));

Formula

E.g.f.: B(x)^2, where B(x) is the e.g.f. of A162695.
a(n) = 2 * Sum_{k=0..n} k^(n-k) * (n+2)^(k-1) * binomial(n,k).

A380426 E.g.f. A(x) satisfies A(x) = exp( 3 * x * A(x)^(1/3) * exp(x * A(x)^(1/3)) ).

Original entry on oeis.org

1, 3, 21, 225, 3309, 62223, 1430235, 38940681, 1227116409, 43970226651, 1766653847079, 78696970239165, 3850658628709941, 205350233796536871, 11856632842453069491, 736988120901130761297, 49073265311942508067185, 3485242354486865203370931, 263004127262410708414755135
Offset: 0

Views

Author

Seiichi Manyama, Jan 24 2025

Keywords

Crossrefs

Programs

  • PARI
    a(n) = 3*sum(k=0, n, k^(n-k)*(n+3)^(k-1)*binomial(n, k));

Formula

E.g.f.: B(x)^3, where B(x) is the e.g.f. of A162695.
a(n) = 3 * Sum_{k=0..n} k^(n-k) * (n+3)^(k-1) * binomial(n,k).
Showing 1-3 of 3 results.