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

A365896 Expansion of e.g.f. exp( Sum_{k>=0} x^(2*k+5) / (2*k+5)! ).

Original entry on oeis.org

1, 0, 0, 0, 0, 1, 0, 1, 0, 1, 126, 1, 792, 1, 3718, 126127, 15808, 2450449, 64702, 31593277, 489125360, 343746937, 21511079558, 3435303323, 588969369056, 5227461790937, 13006203613950, 434431246754441, 255046847579760, 21684989820772201, 128034458842091862
Offset: 0

Views

Author

Seiichi Manyama, Sep 22 2023

Keywords

Crossrefs

Programs

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

Formula

a(0) = 1; a(n) = Sum_{k=0..floor((n-5)/2)} binomial(n-1,2*k+4) * a(n-2*k-5).
E.g.f.: exp( -x - x^3/6 + sinh(x) ).

A365898 Expansion of e.g.f. exp( Sum_{k>=0} x^(4*k+5) / (4*k+5)! ).

Original entry on oeis.org

1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 0, 1, 2002, 126126, 0, 1, 32878, 11639628, 488864376, 1, 523754, 962159506, 164910249504, 5194672859377, 8390630, 79198593760, 44919303188760, 4895979169961881, 123378675217248882, 6434084214390, 11762691848427520
Offset: 0

Views

Author

Seiichi Manyama, Sep 22 2023

Keywords

Crossrefs

Programs

  • PARI
    my(N=40, x='x+O('x^N)); Vec(serlaplace(exp(sum(k=0, N\4, x^(4*k+5)/(4*k+5)!))))

Formula

a(0) = 1; a(n) = Sum_{k=0..floor((n-5)/4)} binomial(n-1,4*k+4) * a(n-4*k-5).
E.g.f.: exp( -x + (sinh(x) + sin(x))/2 ).

A365916 Expansion of e.g.f. 1 / ( 1 - Sum_{k>=0} x^(3*k+5) / (3*k+5)! ).

Original entry on oeis.org

1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 252, 1, 0, 2574, 1, 756756, 21606, 1, 33081048, 174420, 11732745025, 1052328186, 1397640, 1484192245537, 30223445274, 623360754309330, 126750660276241, 835509726090, 182333017453575330, 9309138073555321
Offset: 0

Views

Author

Seiichi Manyama, Sep 23 2023

Keywords

Crossrefs

Programs

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

Formula

a(0) = 1; a(n) = Sum_{k=0..floor((n-5)/3)} binomial(n,3*k+5) * a(n-3*k-5).
Showing 1-3 of 3 results.