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.

A362273 Expansion of e.g.f. 1/(1 - x * exp(-x * exp(-x))).

Original entry on oeis.org

1, 1, 0, 3, 8, -15, 264, -35, -1968, 87633, -499600, 2375901, 48964200, -830424023, 9884072184, -11730111315, -1407884197216, 36601422429345, -416600839315872, 191233500832189, 136472124267672120, -3513232740127917639, 46653752740647748520
Offset: 0

Views

Author

Seiichi Manyama, Apr 13 2023

Keywords

Crossrefs

Programs

  • PARI
    my(N=30, x='x+O('x^N)); Vec(serlaplace(1/(1-x*exp(-x*exp(-x)))))

Formula

a(n) = n! * Sum_{i=0..n} (-1)^(n-i) * Sum_{j=0..n-i} i^j * j^(n-i-j) / (j! * (n-i-j)!).

A362275 Expansion of e.g.f. exp(x*exp(-x*exp(-x))).

Original entry on oeis.org

1, 1, -1, 4, -3, -44, 595, -5214, 36953, -176840, -498969, 31239550, -605916971, 9001842708, -110410388101, 998140500826, -1114748107215, -247879285927184, 8410011463871695, -201620611378992906, 4024515940445770541, -66832538504513547380
Offset: 0

Views

Author

Seiichi Manyama, Apr 13 2023

Keywords

Crossrefs

Programs

  • PARI
    my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(x*exp(-x*exp(-x)))))

Formula

a(n) = Sum_{i=0..n} (-1)^(n-i) * binomial(n,i) * Sum_{j=0..n-i} i^j * j^(n-i-j) * binomial(n-i,j).
Showing 1-2 of 2 results.