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.

A378042 E.g.f. satisfies A(x) = exp( x * A(x)^3 / (1-x) ) / (1-x).

Original entry on oeis.org

1, 2, 19, 385, 12041, 512101, 27616705, 1806241151, 138948411649, 12294333869545, 1230146587626041, 137347201671983227, 16928938651265737585, 2283232081600363345037, 334480117852142180147377, 52888942867094899879009111, 8978241760087200983202588545, 1628601738501672908949881316433
Offset: 0

Views

Author

Seiichi Manyama, Nov 15 2024

Keywords

Crossrefs

Programs

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

Formula

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

A378092 E.g.f. satisfies A(x) = exp( x * (1-x) * A(x)^2 ) / (1-x).

Original entry on oeis.org

1, 2, 11, 118, 1993, 46386, 1376059, 49601014, 2104366513, 102717184546, 5670357524011, 349304240222070, 23754501885783673, 1767641331001915474, 142868173684094891803, 12463599550013379095926, 1167281368458948415748833, 116814664082977998388994370, 12440156205235958837516345419
Offset: 0

Views

Author

Seiichi Manyama, Nov 16 2024

Keywords

Crossrefs

Programs

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

Formula

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