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.

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

Original entry on oeis.org

1, 3, 19, 241, 4853, 131601, 4466875, 182546421, 8739580841, 480023587297, 29759608788551, 2055884656223949, 156623317577663293, 13045653418406432721, 1179479817324874518419, 115042876530398843323621, 12041278143223263581774417, 1346252625757920938545507521
Offset: 0

Views

Author

Seiichi Manyama, Feb 01 2025

Keywords

Crossrefs

Programs

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

Formula

a(n) = n! * Sum_{k=0..n} (n-k+1)^(k-1) * binomial(3*n-5*k+1,n-k)/k!.

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

Original entry on oeis.org

1, 3, 17, 157, 2081, 36301, 787435, 20454393, 619606321, 21459697561, 836857705931, 36298027042069, 1733720198941945, 90434688020581893, 5115766921884661099, 311966602078171218481, 20402441541405767271137, 1424538121070974347467569, 105769440064498860592940683
Offset: 0

Views

Author

Seiichi Manyama, Feb 02 2025

Keywords

Crossrefs

Cf. A380764.

Programs

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

Formula

a(n) = n! * Sum_{k=0..n} (n-k+1)^(k-1) * binomial(2*n-3*k+2,n-k)/k!.
Showing 1-2 of 2 results.