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-2 of 2 results.

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

Original entry on oeis.org

1, 3, 15, 117, 1305, 19323, 359559, 8084205, 213425361, 6475518675, 222088463199, 8497641269637, 358899729493545, 16585866328129803, 832523413971932055, 45105537151437499197, 2623613865509122341921, 163070009495928522691875
Offset: 0

Views

Author

Seiichi Manyama, Jan 30 2024

Keywords

Crossrefs

Programs

  • PARI
    my(N=20, x='x+O('x^N)); Vec(serlaplace(exp(3/2*(1-sqrt(1-4*x)))))

Formula

a(0) = 1; a(n) = Sum_{k=0..n-1} 3^(n-k) * (n-1+k)! / (k! * (n-1-k)!).
a(n) = 2*(2*n-3)*a(n-1) + 9*a(n-2).

A369723 Expansion of e.g.f. exp( 2 * (1-sqrt(1-4*x)) ).

Original entry on oeis.org

1, 4, 24, 208, 2464, 37824, 720256, 16450816, 439245312, 13440572416, 464007387136, 17847329869824, 757011972726784, 35108108023349248, 1767517592731090944, 96007679735852498944, 5596725706163142393856, 348533116657888468402176
Offset: 0

Views

Author

Seiichi Manyama, Jan 30 2024

Keywords

Crossrefs

Programs

  • PARI
    my(N=20, x='x+O('x^N)); Vec(serlaplace(exp(2*(1-sqrt(1-4*x)))))

Formula

a(0) = 1; a(n) = Sum_{k=0..n-1} 4^(n-k) * (n-1+k)! / (k! * (n-1-k)!).
a(n) = 2*(2*n-3)*a(n-1) + 16*a(n-2).
Showing 1-2 of 2 results.