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.

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

Original entry on oeis.org

1, 0, 1, 2, 21, 144, 1765, 21552, 340137, 5845760, 116495721, 2550320640, 62023290109, 1642735460352, 47321500546125, 1469008742856704, 48962556079079505, 1742660440701861888, 65993849612007279697, 2648999558505185280000, 112360563741545020804581
Offset: 0

Views

Author

Seiichi Manyama, Nov 09 2024

Keywords

Crossrefs

Programs

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

Formula

E.g.f. A(x) satisfies A(x) = exp(-x * A(x))/(1 - x*A(x)).
a(n) = n! * Sum_{k=0..n} (-1)^k * (n+1)^(k-1) * binomial(2*n-k,n-k)/k!.
a(n) ~ phi^(3*n + 3/2) * n^(n-1) / (5^(1/4) * exp(phi*n + 1/phi)), where phi = A001622 is the golden ratio. - Vaclav Kotesovec, Nov 10 2024

A377861 Expansion of e.g.f. (1/x) * Series_Reversion( x * (1 - x)^3 * exp(x) ).

Original entry on oeis.org

1, 2, 15, 206, 4193, 113904, 3882511, 159475280, 7672503681, 423360926720, 26362968645071, 1829066086810368, 139929538526047585, 11703312997355442176, 1062423600515479191375, 104042389901715413633024, 10933256593926589800851969, 1227201235266954603172331520
Offset: 0

Views

Author

Seiichi Manyama, Nov 09 2024

Keywords

Crossrefs

Programs

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

Formula

E.g.f. A(x) satisfies A(x) = exp(-x * A(x))/(1 - x*A(x))^3.
a(n) = n! * Sum_{k=0..n} (-1)^k * (n+1)^(k-1) * binomial(4*n-k+2,n-k)/k!.
Showing 1-2 of 2 results.