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.

A346747 E.g.f.: exp( (x * exp(x) + sinh(x)) / 2 ).

Original entry on oeis.org

1, 1, 2, 6, 20, 79, 357, 1783, 9788, 58361, 374581, 2571851, 18779928, 145163975, 1183028095, 10129297307, 90843458256, 851083079649, 8309588493841, 84370700833147, 889152061199144, 9709123938880103, 109677977422359703, 1279880472867083111, 15408386793144717536
Offset: 0

Views

Author

Ilya Gutkovskiy, Aug 01 2021

Keywords

Comments

Exponential transform of A110654.

Crossrefs

Programs

  • Mathematica
    nmax = 24; CoefficientList[Series[Exp[(x Exp[x] + Sinh[x])/2], {x, 0, nmax}], x] Range[0, nmax]!
    a[0] = 1; a[n_] := a[n] = Sum[Binomial[n - 1, k - 1] Ceiling[k/2] a[n - k], {k, 1, n}]; Table[a[n], {n, 0, 24}]

Formula

a(0) = 1; a(n) = Sum_{k=1..n} binomial(n-1,k-1) * A110654(k) * a(n-k).

A346748 E.g.f.: exp( (x * exp(-x) + sinh(x)) / 2 ).

Original entry on oeis.org

1, 1, 0, 0, 4, -1, -9, 103, -132, -535, 7731, -25117, -18072, 1078215, -6917039, 16312667, 186611792, -2454241183, 14370311311, 1436259867, -934228834216, 10658996229479, -54990712418263, -185381404760729, 7270919988375200, -80130195880201583, 391992372213719679
Offset: 0

Views

Author

Ilya Gutkovskiy, Aug 01 2021

Keywords

Comments

Exponential transform of A001057.

Crossrefs

Programs

  • Mathematica
    nmax = 26; CoefficientList[Series[Exp[(x Exp[-x] + Sinh[x])/2], {x, 0, nmax}], x] Range[0, nmax]!
    a[0] = 1; a[n_] := a[n] = Sum[(-1)^(k + 1) Binomial[n - 1, k - 1] Floor[(k + 1)/2] a[n - k], {k, 1, n}]; Table[a[n], {n, 0, 26}]

Formula

a(0) = 1; a(n) = Sum_{k=1..n} binomial(n-1,k-1) * A001057(k) * a(n-k).

Extensions

Typo in a(26) corrected by Georg Fischer, Nov 30 2021
Showing 1-2 of 2 results.