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.

A362467 E.g.f. satisfies log(A(x)) = exp(x / A(x)^2) - 1.

Original entry on oeis.org

1, 1, -2, 11, -97, 1162, -17401, 309297, -6284804, 141430821, -3411964025, 84469913200, -1971020234987, 31982106694501, 703663251081166, -131978337454653865, 11571772746664732291, -879307513026396837470, 64266964230133042267891
Offset: 0

Views

Author

Seiichi Manyama, May 26 2023

Keywords

Crossrefs

Programs

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

Formula

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