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.

A365030 E.g.f. satisfies A(x) = exp(x * (1 + x * A(x))^3).

Original entry on oeis.org

1, 1, 7, 55, 709, 11761, 243181, 6054763, 175803097, 5847578785, 219175994521, 9144024668131, 420340277237365, 21111584238219697, 1150333949592549541, 67589878866533749531, 4260172601206280708401, 286737199114729515029569
Offset: 0

Views

Author

Seiichi Manyama, Aug 17 2023

Keywords

Crossrefs

Programs

  • Mathematica
    Array[#!*Sum[ (# - k + 1)^(k - 1)*Binomial[3 k, # - k]/k!, {k, 0, #}] &, 18, 0] (* Michael De Vlieger, Aug 18 2023 *)
  • PARI
    a(n) = n!*sum(k=0, n, (n-k+1)^(k-1)*binomial(3*k, n-k)/k!);

Formula

a(n) = n! * Sum_{k=0..n} (n-k+1)^(k-1) * binomial(3*k,n-k)/k!.