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-1 of 1 results.

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

Original entry on oeis.org

0, 1, 0, -6, 36, -20, -2730, 38178, -93688, -7711272, 184968810, -1036880570, -66424040628, 2427958996164, -24081426198466, -1271591203182510, 66942964987695120, -1027559316530335952, -45046737788036457006, 3332345692967904801438
Offset: 0

Views

Author

Seiichi Manyama, Feb 09 2023

Keywords

Crossrefs

Programs

  • PARI
    a(n) = sum(k=1, n, k^(n-k)*(-n)^(k-1)*binomial(n, k));

Formula

a(n) = Sum_{k=1..n} k^(n-k) * (-n)^(k-1) * binomial(n,k).
Showing 1-1 of 1 results.