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.

A383165 Expansion of e.g.f. log(1 + (exp(2*x) - 1)/2)^2 / 2.

Original entry on oeis.org

0, 0, 1, 3, 3, -10, -30, 112, 588, -2448, -18960, 87296, 911328, -4599296, -61152000, 335523840, 5464904448, -32363874304, -627708979200, 3987441516544, 90133968949248, -610866587369472, -15823700431503360, 113884455221854208, 3334995367266582528, -25385597162671308800
Offset: 0

Views

Author

Seiichi Manyama, Apr 18 2025

Keywords

Crossrefs

Column k=2 of A209849.

Programs

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

Formula

a(n) = Sum{k=2..n} 2^(n-k) * Stirling2(n,k) * Stirling1(k,2).