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.

A383208 Expansion of e.g.f. (exp(f(x)) - 1)^3 / 6, where f(x) = (exp(2*x) - 1)/2.

Original entry on oeis.org

0, 0, 0, 1, 18, 245, 3120, 39697, 517790, 6999785, 98520060, 1445923149, 22129416210, 352932509085, 5859167661256, 101122879922313, 1811960841148774, 33662625853200337, 647550189266734452, 12881675626292023173, 264677402162135670554, 5610552395871699336453
Offset: 0

Views

Author

Seiichi Manyama, Apr 19 2025

Keywords

Crossrefs

Column k=3 of A383206.
Cf. A000559.

Programs

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

Formula

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