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.

Showing 1-1 of 1 results.

A365016 E.g.f. satisfies A(x) = exp( x*A(x)^3/(1 - x * A(x)^2) ).

Original entry on oeis.org

1, 1, 9, 160, 4345, 159796, 7434199, 418864426, 27732988609, 2110729489048, 181587635465671, 17426825999144926, 1845855944285411425, 213900244312057975348, 26919356609721984494311, 3656322063766897691641666, 533110345129065969043548289
Offset: 0

Views

Author

Seiichi Manyama, Aug 15 2023

Keywords

Crossrefs

Programs

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

Formula

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