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.

A375630 Expansion of e.g.f. exp(2*x) / (1 - x^3 * exp(x)).

Original entry on oeis.org

1, 2, 4, 14, 88, 572, 4024, 37298, 404464, 4601528, 58426864, 846080798, 13209174136, 219868220756, 3981563464792, 77708414601098, 1606665377716576, 35246223612156272, 821962294211430496, 20227931586257247542, 522932344617513862696, 14204133017700173041292
Offset: 0

Views

Author

Seiichi Manyama, Aug 21 2024

Keywords

Crossrefs

Programs

  • PARI
    my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(2*x)/(1-x^3*exp(x))))
    
  • PARI
    a(n) = n!*sum(k=0, n\3, (k+2)^(n-3*k)/(n-3*k)!);

Formula

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

A375652 Expansion of e.g.f. exp(2*x + x^2 * exp(x)).

Original entry on oeis.org

1, 2, 6, 26, 136, 812, 5494, 41414, 341800, 3056984, 29415274, 302501498, 3305797444, 38212967444, 465409979038, 5951991056558, 79686155008816, 1113909729606896, 16219814971477330, 245503998889083362, 3855373914424695196, 62708526467241370892
Offset: 0

Views

Author

Seiichi Manyama, Aug 22 2024

Keywords

Crossrefs

Programs

  • PARI
    my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(2*x+x^2*exp(x))))
    
  • PARI
    a(n) = n!*sum(k=0, n\2, (k+2)^(n-2*k)/(k!*(n-2*k)!));

Formula

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