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.

A358072 a(n) is the number of "merger histories" of n elements (see A256006) where at most 3 elements can merge at the same time.

Original entry on oeis.org

1, 1, 4, 28, 320, 5360, 123760, 3765440, 145951680, 7019678400, 410164339200, 28615175635200, 2349290700556800, 224201377681881600, 24610071925350912000, 3078761402543963136000, 435446399655217606656000
Offset: 1

Views

Author

Johannes Wirtz, Oct 29 2022

Keywords

Comments

Also the number of unordered, leaf-labeled increasing trees on n leaves with maximum node outdegree 3.

Crossrefs

Cf. A256006.

Programs

  • Maple
    a := proc(n) option remember; if n < 2 then return 1 else
    a(n-2)*binomial(n, 3) + a(n-1)*binomial(n, 2) fi end:
    seq(a(n), n = 1..17);

Formula

a(n) = n*(n-1)*((n-2)*a(n-2) + 3*a(n-1))/6 for n >= 3.
a(n+1) ~ 2*Pi*exp(-2/3)*Gamma(5/3)^(-1)*n^(2n+8/3)*2^(-n)*exp^(-2n).
2*Pi*exp(-2/3)*Gamma(5/3)^(-1) = 3.573427548...

A103996 Recurrence: a(n) = -Sum[i=0..n-1, a(i)*C(n+1,i) ], a(0)=1.

Original entry on oeis.org

1, -1, 2, -9, 74, -955, 17744, -448077, 14751974, -613569711, 31452344252, -1947832408225, 143356013568338, -12366684481981635, 1235842203066704648, -141628365906835323573, 18449654196553852968254
Offset: 0

Views

Author

Ralf Stephan, Feb 24 2005

Keywords

Crossrefs

Cf. A256006.

Programs

  • Mathematica
    nmax = 30; aa = ConstantArray[0,nmax+1]; aa[[1]] = 1; Do[aa[[n+1]]=-Sum[Binomial[n+1,k]*aa[[k+1]],{k,0,n-1}],{n,1,nmax}]; aa (* Vaclav Kotesovec, May 06 2015 *)

Formula

a(n) ~ (-1)^n * c * n^(2*n+4/3) / (2^n * exp(2*n)), where c = 6.48036478570177035603430551468143689346603193431525230833621534239220049... . - Vaclav Kotesovec, May 06 2015

Extensions

Offset changed to 0 by Vaclav Kotesovec, May 06 2015
Showing 1-2 of 2 results.