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.

Previous Showing 31-32 of 32 results.

A376104 Expansion of e.g.f. -LambertW(-2*x / (1 + x))/2.

Original entry on oeis.org

0, 1, 2, 18, 200, 3240, 65712, 1626352, 47357312, 1587917952, 60244640000, 2551693841664, 119354176490496, 6110496488651776, 339867366232131584, 20407634663085066240, 1315738882989816578048, 90655729379062051799040, 6647791273573299221495808
Offset: 0

Views

Author

Seiichi Manyama, Sep 10 2024

Keywords

Crossrefs

Programs

  • PARI
    my(N=20, x='x+O('x^N)); concat(0, Vec(serlaplace(-lambertw(-2*x/(1+x))/2)))
    
  • PARI
    a(n) = n!*sum(k=1, n, (-1)^(n-k)*(2*k)^(k-1)*binomial(n-1, k-1)/k!);

Formula

E.g.f. A(x) satisfies A(x) = x * (-A(x) + exp(2*A(x))).
E.g.f.: Series_Reversion( x / (-x + exp(2*x)) ).
a(n) = n! * Sum_{k=1..n} (-1)^(n-k) * (2*k)^(k-1) * binomial(n-1,k-1)/k!.
a(n) ~ (2-exp(-1))^(n + 1/2) * n^(n-1) / 2^(3/2). - Vaclav Kotesovec, Sep 11 2024

A376105 Expansion of e.g.f. -LambertW(-3*x / (1 + x))/3.

Original entry on oeis.org

0, 1, 4, 51, 948, 24465, 802098, 31975335, 1501332696, 81158916897, 4964709729510, 339064260058359, 25573087919369268, 2111171271497336529, 189350082996145020810, 18334276660240212722535, 1906166280260835065912112, 211792366386481088490433857
Offset: 0

Views

Author

Seiichi Manyama, Sep 10 2024

Keywords

Crossrefs

Programs

  • PARI
    my(N=20, x='x+O('x^N)); concat(0, Vec(serlaplace(-lambertw(-3*x/(1+x))/3)))
    
  • PARI
    a(n) = n!*sum(k=1, n, (-1)^(n-k)*(3*k)^(k-1)*binomial(n-1, k-1)/k!);

Formula

E.g.f. A(x) satisfies A(x) = x * (-A(x) + exp(3*A(x))).
E.g.f.: Series_Reversion( x / (-x + exp(3*x)) ).
a(n) = n! * Sum_{k=1..n} (-1)^(n-k) * (3*k)^(k-1) * binomial(n-1,k-1)/k!.
a(n) ~ (3-exp(-1))^(n + 1/2) * n^(n-1) / 3^(3/2). - Vaclav Kotesovec, Sep 11 2024
Previous Showing 31-32 of 32 results.