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.

A367078 E.g.f. satisfies A(x) = 1 + log(1 + x*A(x)^2).

Original entry on oeis.org

1, 1, 3, 14, 82, 514, 2508, -12328, -820752, -22232232, -498433320, -9865850688, -159373484448, -1136343398880, 65056426313760, 4663237803223680, 210535052582008320, 7821007002377349120, 242387957802121971840, 5333182310844833642496
Offset: 0

Views

Author

Seiichi Manyama, Nov 07 2023

Keywords

Crossrefs

Programs

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

Formula

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