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.

Previous Showing 11-12 of 12 results.

A367744 Expansion of e.g.f. exp(1 - x - exp(3*x)).

Original entry on oeis.org

1, -4, 7, 17, -14, -637, -2951, 14126, 333205, 2076245, -12283700, -423234511, -4163106203, 8148184700, 952894223755, 15568620884189, 69314620864450, -2816256959131561, -83397946135434515, -1025683419252783946, 4726361848234575553, 525779836596438636689, 12363747028673287330948, 112888493670408785796989
Offset: 0

Views

Author

Ilya Gutkovskiy, Nov 29 2023

Keywords

Crossrefs

Programs

  • Mathematica
    nmax = 23; CoefficientList[Series[Exp[1 - x - Exp[3 x]], {x, 0, nmax}], x] Range[0, nmax]!
    a[0] = 1; a[n_] := a[n] = -a[n - 1] - Sum[Binomial[n - 1, k - 1] 3^k a[n - k], {k, 1, n}]; Table[a[n], {n, 0, 23}]
    Table[Sum[(-1)^(n - k) Binomial[n, k] 3^k BellB[k, -1], {k, 0, n}], {n, 0, 23}]

Formula

a(n) = exp(1) * Sum_{k>=0} (-1)^k * (3*k-1)^n / k!.
a(0) = 1; a(n) = -a(n-1) - Sum_{k=1..n} binomial(n-1,k-1) * 3^k * a(n-k).
a(n) = Sum_{k=0..n} (-1)^(n-k) * binomial(n,k) * 3^k * A000587(k).

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

Original entry on oeis.org

1, 1, 7, 109, 2665, 88981, 3768391, 193406977, 11663021329, 808092594505, 63252127883431, 5519514702282901, 531266903931402937, 55912682968563924829, 6387276499619184590695, 787104141893585220839401, 104074098535487279656795681, 14697203663694095986066104337
Offset: 0

Views

Author

Seiichi Manyama, Aug 02 2024

Keywords

Crossrefs

Programs

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

Formula

a(n) = Sum_{k=0..n} (-9)^(n-k) * Stirling1(n,k) * A317996(k) = (-9)^n * Sum_{k=0..n} (1/3)^k * Stirling1(n,k) * Bell_k(-1/3), where Bell_n(x) is n-th Bell polynomial.
From Vaclav Kotesovec, Aug 02 2024: (Start)
a(n) = 18*(n-2)*a(n-1) - 9*(3*n-8)*(3*n-7)*a(n-2) + a(n-3).
a(n) ~ Gamma(1/3) * 3^(2*n - 3/2) * n^(n - 5/6) / (sqrt(2*Pi) * exp(n - 1/3)) * (1 - 2*Pi/(3^(3/2)*Gamma(1/3)^2*n^(1/3))). (End)
Previous Showing 11-12 of 12 results.