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.

A355086 E.g.f. A(x) satisfies A(x) = 1 - log(1-x) * A(2*x).

Original entry on oeis.org

1, 1, 5, 68, 2318, 191364, 37322176, 16851654336, 17323677619888, 39991811695203552, 204958165376127918144, 2309776412016044230960128, 56778926016923229432156258048, 3023733345610004146919028796718592
Offset: 0

Views

Author

Seiichi Manyama, Jun 18 2022

Keywords

Crossrefs

Programs

  • PARI
    a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=sum(j=1, i, 2^(i-j)*(j-1)!*binomial(i, j)*v[i-j+1])); v;

Formula

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