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.

A357024 E.g.f. satisfies log(A(x)) = (exp(x * A(x)) - 1)^2.

Original entry on oeis.org

1, 0, 2, 6, 74, 750, 11402, 195006, 3994202, 93164910, 2455754762, 72098755806, 2333497474970, 82569245246670, 3170700672801482, 131342693516044926, 5837883571730770778, 277151780512413426990, 13997018265350140886282, 749304617892345721184286
Offset: 0

Views

Author

Seiichi Manyama, Sep 09 2022

Keywords

Crossrefs

Programs

  • Mathematica
    m = 20; (* number of terms *)
    A[_] = 0;
    Do[A[x_] = Exp[(Exp[x*A[x]] - 1)^2] + O[x]^m // Normal, {m}];
    CoefficientList[A[x], x]*Range[0, m - 1]! (* Jean-François Alcover, Sep 12 2022 *)
  • PARI
    a(n) = sum(k=0, n\2, (2*k)!*(n+1)^(k-1)*stirling(n, 2*k, 2)/k!);

Formula

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