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.

A368439 Expansion of e.g.f. exp(x) / (4 - 3*exp(2*x)).

Original entry on oeis.org

1, 7, 97, 2023, 56257, 1955527, 81570337, 3969606823, 220777431937, 13813838801287, 960354511044577, 73441487204670823, 6126887497334519617, 553733062241471461447, 53894653951229272883617, 5620230710788836168938023, 625160202763025501303191297
Offset: 0

Views

Author

Seiichi Manyama, Dec 24 2023

Keywords

Crossrefs

Programs

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

Formula

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