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.

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

Original entry on oeis.org

1, 1, 11, 241, 8105, 370061, 21403675, 1500521485, 123685912817, 11724012791929, 1256517775425131, 150254377493878505, 19833528195709809817, 2864566162751107839493, 449364739762263286489403, 76084967168410028438252101, 13829896583435315152843525985
Offset: 0

Views

Author

Seiichi Manyama, Mar 02 2023

Keywords

Crossrefs

Programs

  • PARI
    a(n) = n!*sum(k=0, n, (2*n+2*k+1)^(k-1)*binomial(n-1, n-k)/k!);

Formula

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