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.

A351969 a(0) = 1; a(n) = Sum_{k=0..floor((n-1)/4)} binomial(n-1,4*k) * a(k) * a(n-4*k-1).

Original entry on oeis.org

1, 1, 1, 1, 1, 2, 7, 22, 57, 128, 389, 1904, 9329, 38040, 132147, 542648, 3283633, 20997824, 114657097, 536178880, 2784500161, 19876061313, 153326461333, 1034551840125, 6051063487505, 38079448058864, 312420426286609, 2785055245002944, 22141255546319849
Offset: 0

Views

Author

Ilya Gutkovskiy, Feb 26 2022

Keywords

Crossrefs

Programs

  • Mathematica
    a[0] = 1; a[n_] := a[n] = Sum[Binomial[n - 1, 4 k] a[k] a[n - 4 k - 1], {k, 0, Floor[(n - 1)/4]}]; Table[a[n], {n, 0, 28}]

Formula

E.g.f.: exp( Sum_{n>=0} a(n) * x^(4*n+1) / (4*n+1)! ).

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

Original entry on oeis.org

1, 1, 2, 6, 25, 130, 810, 5882, 48822, 455922, 4730766, 53996052, 672326226, 9069015409, 131742237040, 2050468853310, 34041605882650, 600476252401332, 11215153375288308, 221103539006813514, 4588413676426217916, 99981290070561391848, 2282329233032693093114
Offset: 0

Views

Author

Ilya Gutkovskiy, Mar 16 2022

Keywords

Crossrefs

Programs

  • Mathematica
    a[0] = 1; a[n_] := a[n] = Sum[Binomial[n, 3 k + 1] a[k] a[n - 3 k - 1], {k, 0, Floor[(n - 1)/3]}]; Table[a[n], {n, 0, 22}]

Formula

E.g.f.: 1 / (1 - Sum_{n>=0} a(n) * x^(3*n+1) / (3*n+1)!).
Showing 1-2 of 2 results.