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.

A365980 Expansion of e.g.f. 1 / ( 1 - Sum_{k>=0} x^(2*k+3) / (2*k+3) ).

Original entry on oeis.org

1, 0, 0, 2, 0, 24, 80, 720, 5376, 53760, 490752, 6289920, 68766720, 1024607232, 13520332800, 226177695744, 3498759290880, 65257155624960, 1153246338220032, 23793010526453760, 472374431008948224, 10686755493583257600, 235406405307208826880
Offset: 0

Views

Author

Seiichi Manyama, Sep 23 2023

Keywords

Crossrefs

Programs

  • PARI
    my(N=30, x='x+O('x^N)); Vec(serlaplace(1/(1+x-atanh(x))))

Formula

a(0) = 1; a(n) = Sum_{k=0..floor((n-3)/2)} (2*k+2)! * binomial(n,2*k+3) * a(n-2*k-3).
E.g.f.: 1 / ( 1 + x - arctanh(x) ).