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.

A375950 Expansion of e.g.f. 1 / (5 - 4 * exp(x))^(3/2).

Original entry on oeis.org

1, 6, 66, 1026, 20586, 505746, 14698506, 493198866, 18762818826, 797986018386, 37518173169546, 1932228677052306, 108176937646278666, 6541409475478588626, 424885004809917954186, 29502494166061176035346, 2180808897487960097444106
Offset: 0

Views

Author

Seiichi Manyama, Sep 03 2024

Keywords

Crossrefs

Programs

  • Mathematica
    nmax=16; CoefficientList[Series[1 / (5 - 4 * Exp[x])^(3/2),{x,0,nmax}],x]*Range[0,nmax]! (* Stefano Spezia, Sep 03 2024 *)
  • PARI
    a000407(n) = (2*n+1)!/n!;
    a(n) = sum(k=0, n, a000407(k)*stirling(n, k, 2));

Formula

a(n) = Sum_{k=0..n} A000407(k) * Stirling2(n,k).