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.

A362571 E.g.f. satisfies A(x) = exp(x * A(x)^(x^2)).

Original entry on oeis.org

1, 1, 1, 1, 25, 121, 361, 8401, 82321, 456625, 11496241, 172149121, 1452983401, 40947003241, 823437038425, 9491714865361, 300842942443681, 7568303382376801, 111494036396244961, 3957438528527140225, 119206427681076135481, 2147109997071581380441
Offset: 0

Views

Author

Seiichi Manyama, Apr 25 2023

Keywords

Crossrefs

Programs

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

Formula

E.g.f.: (-LambertW(-x^3) / x^3)^(1/x^2) = exp(-LambertW(-x^3) / x^2) = exp(x * exp(-LambertW(-x^3))).
a(n) = n! * Sum_{k=0..floor(n/3)} (n-2*k)^k * binomial(n-2*k-1,k)/(n-2*k)!.
E.g.f.: Sum_{k>=0} (k*x^2 + 1)^(k-1) * x^k / k!.

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

Original entry on oeis.org

1, 1, 1, 4, 13, 76, 421, 3361, 26209, 267688, 2689201, 33579811, 412800961, 6103089994, 88754687113, 1517513934301, 25487131948321, 495009722435176, 9430633148123809, 205154208873930763, 4371962638221712801, 105330237499426955926
Offset: 0

Views

Author

Seiichi Manyama, Apr 25 2023

Keywords

Crossrefs

Programs

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

Formula

E.g.f.: (-2 * LambertW(-x^2/2) / x^2)^(2/x) = exp(-2 * LambertW(-x^2/2) / x) = exp(x * exp(-LambertW(-x^2/2))).
a(n) = n! * Sum_{k=0..floor(n/2)} ((n-k)/2)^k * binomial(n-k-1,k)/(n-k)!.
E.g.f.: Sum_{k>=0} (k*x/2 + 1)^(k-1) * x^k / k!.
a(n) ~ (exp(sqrt(2)*exp(1/2)) - (-1)^n*exp(-sqrt(2)*exp(1/2))) * n^(n-1) / (2^(n/2 - 1) * exp((n-1)/2)). - Vaclav Kotesovec, Aug 05 2025
Showing 1-2 of 2 results.