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.

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

Original entry on oeis.org

1, 5, 69, 1741, 65025, 3238401, 202252549, 15216086789, 1340493558497, 135418524663457, 15436319894361141, 1960277599669850517, 274474966233168968353, 42012725272366653895169, 6979546631782182590117189, 1250777360824265136694022341, 240516661686854988775792192833
Offset: 0

Views

Author

Seiichi Manyama, Nov 06 2024

Keywords

Crossrefs

Programs

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

Formula

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