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.

A380764 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, 21, 283, 5825, 161281, 5616415, 235957275, 11619036385, 656499970657, 41874164431631, 2976512157543739, 233338979438666161, 20000563338051696609, 1860931002481238778511, 186799953169800497128891, 20122315691834196706830017, 2315417027513322899728489537
Offset: 0

Views

Author

Seiichi Manyama, Feb 01 2025

Keywords

Crossrefs

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+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-4*k+1,n-k)/k!.

A380774 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, 15, 121, 1493, 25041, 519175, 12764109, 365437385, 11989334305, 443413796291, 18237280179669, 825743182996957, 40830652259369649, 2189754246873652607, 126605689000719768541, 7850410500340268709137, 519697910250629229492033, 36585510030973732956134779
Offset: 0

Views

Author

Seiichi Manyama, Feb 02 2025

Keywords

Crossrefs

Cf. A380765.

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*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-4*k+2,n-k)/k!.
Showing 1-2 of 2 results.