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.

A349600 E.g.f. satisfies: A(x)^A(x) = 1 + x*A(x)^2.

Original entry on oeis.org

1, 1, 2, 3, -20, -320, -2274, 5474, 487432, 8358480, 37944240, -2286868848, -81319780200, -1139790073968, 18382692073032, 1570867988794680, 42704382709868736, 55662087673489920, -49662902468183117760, -2360239974764654675904, -38098700311039336972800
Offset: 0

Views

Author

Seiichi Manyama, Nov 22 2021

Keywords

Crossrefs

Programs

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

Formula

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