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.

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

Original entry on oeis.org

1, 1, -2, 6, -28, 260, -3948, 71120, -1392368, 29971008, -724981920, 19800726528, -603571233120, 20210951379840, -734663902256256, 28785160833254400, -1210241780559067392, 54390280325210271744, -2602745536670709682176, 132118736078618372579328
Offset: 0

Views

Author

Seiichi Manyama, Jul 16 2022

Keywords

Crossrefs

Programs

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

Formula

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