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.

A379875 E.g.f. A(x) satisfies A(x) = exp(-x*A(x)) + x.

Original entry on oeis.org

1, 0, 1, -4, 29, -256, 2797, -36352, 549145, -9468928, 183661721, -3960254464, 94011364405, -2436944723968, 68503370394565, -2075866971897856, 67464214813124273, -2340885649895194624, 86377064031382020913, -3377541983440381935616, 139515670016074334382541
Offset: 0

Views

Author

Seiichi Manyama, Jan 05 2025

Keywords

Crossrefs

Programs

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

Formula

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