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

A317172 a(n) = n! * [x^n] 1/(1 - n*log(1 + x)).

Original entry on oeis.org

1, 1, 6, 114, 4168, 248870, 21966768, 2685571560, 434202400896, 89679267601632, 23032451508686400, 7199033431349412576, 2690461258552995849216, 1184680716090974803461072, 606986901206377433194091520, 358023049940533240478842992000, 240858598980174362552808566194176
Offset: 0

Views

Author

Ilya Gutkovskiy, Jul 23 2018

Keywords

Crossrefs

Main diagonal of A320080.

Programs

  • Mathematica
    Table[n! SeriesCoefficient[1/(1 - n Log[1 + x]), {x, 0, n}], {n, 0, 16}]
    Join[{1}, Table[Sum[StirlingS1[n, k] n^k k!, {k, n}], {n, 16}]]
  • PARI
    {a(n) = sum(k=0, n, k!*n^k*stirling(n, k, 1))} \\ Seiichi Manyama, Jun 12 2020

Formula

a(n) = Sum_{k=0..n} Stirling1(n,k)*n^k*k!.
a(n) ~ sqrt(2*Pi) * n^(2*n + 1/2) / exp(n + 1/2). - Vaclav Kotesovec, Jul 23 2018

A320079 Square array A(n,k), n >= 0, k >= 0, read by antidiagonals, where column k is the expansion of e.g.f. 1/(1 + k*log(1 - x)).

Original entry on oeis.org

1, 1, 0, 1, 1, 0, 1, 2, 3, 0, 1, 3, 10, 14, 0, 1, 4, 21, 76, 88, 0, 1, 5, 36, 222, 772, 694, 0, 1, 6, 55, 488, 3132, 9808, 6578, 0, 1, 7, 78, 910, 8824, 55242, 149552, 72792, 0, 1, 8, 105, 1524, 20080, 199456, 1169262, 2660544, 920904, 0, 1, 9, 136, 2366, 39708, 553870, 5410208, 28873800, 54093696, 13109088, 0
Offset: 0

Views

Author

Ilya Gutkovskiy, Oct 05 2018

Keywords

Examples

			E.g.f. of column k: A_k(x) = 1 + k*x/1! + k*(2*k + 1)*x^2/2! + 2*k*(3*k^2 + 3*k + 1)*x^3/3! + 2*k*(12*k^3 + 18*k^2 + 11*k + 3)*x^4/4! + ...
Square array begins:
  1,    1,     1,      1,       1,       1,  ...
  0,    1,     2,      3,       4,       5,  ...
  0,    3,    10,     21,      36,      55,  ...
  0,   14,    76,    222,     488,     910,  ...
  0,   88,   772,   3132,    8824,   20080,  ...
  0,  694,  9808,  55242,  199456,  553870,  ...
		

Crossrefs

Columns k=0..5 give A000007, A007840, A088500, A354263, A354264, A365588.
Main diagonal gives A317171.

Programs

  • Mathematica
    Table[Function[k, n! SeriesCoefficient[1/(1 + k Log[1 - x]), {x, 0, n}]][j - n], {j, 0, 10}, {n, 0, j}] // Flatten

Formula

E.g.f. of column k: 1/(1 + k*log(1 - x)).
A(n,k) = Sum_{j=0..n} |Stirling1(n,j)|*j!*k^j.
A(0,k) = 1; A(n,k) = k * Sum_{j=1..n} (j-1)! * binomial(n,j) * A(n-j,k). - Seiichi Manyama, May 22 2022

A352074 a(n) = Sum_{k=0..n} Stirling1(n,k) * k! * (-n)^(n-k).

Original entry on oeis.org

1, 1, 4, 42, 904, 34070, 2019888, 174588120, 20804747136, 3276218158560, 659664288364800, 165425062846302336, 50574549124825998336, 18520126461205806360144, 8003819275469728355033088, 4031020344281171589447408000, 2340375822778055527109749211136
Offset: 0

Views

Author

Ilya Gutkovskiy, Mar 02 2022

Keywords

Crossrefs

Programs

  • Mathematica
    Unprotect[Power]; 0^0 = 1; Table[Sum[StirlingS1[n, k] k! (-n)^(n - k), {k, 0, n}], {n, 0, 16}]
    Join[{1}, Table[n! SeriesCoefficient[1/(1 + Log[1 - n x]/n), {x, 0, n}], {n, 1, 16}]]
  • PARI
    a(n) = sum(k=0, n, stirling(n, k, 1)*k!*(-n)^(n-k)); \\ Michel Marcus, Mar 02 2022

Formula

a(n) = n! * [x^n] 1 / (1 + log(1 - n*x) / n) for n > 0.
a(n) ~ n! * n^(n-2) * (1 + 2*log(n)/n). - Vaclav Kotesovec, Mar 03 2022

A354752 a(n) = Sum_{k=0..n} Stirling1(n,k) * k! * n^(n-k).

Original entry on oeis.org

1, 1, 0, 6, -152, 6670, -451152, 43685208, -5741360256, 984176280288, -213379094227200, 57100689621382176, -18489130293293779968, 7125765731670143814672, -3223822934974620319272960, 1692009521117003600170128000, -1019755541584493644326799048704
Offset: 0

Views

Author

Ilya Gutkovskiy, Jun 06 2022

Keywords

Crossrefs

Programs

  • Mathematica
    Unprotect[Power]; 0^0 = 1; Table[Sum[StirlingS1[n, k] k! n^(n - k), {k, 0, n}], {n, 0, 16}]
    Join[{1}, Table[n! SeriesCoefficient[1/(1 - Log[1 + n x]/n), {x, 0, n}], {n, 1, 16}]]
  • PARI
    a(n) = sum(k=0, n, stirling(n, k, 1) * k! * n^(n-k)); \\ Michel Marcus, Jun 06 2022

Formula

a(n) = n! * [x^n] 1 / (1 - log(1 + n*x) / n) for n > 0.
a(n) ~ (-1)^(n+1) * n! * n^(n-2). - Vaclav Kotesovec, Jun 06 2022
Showing 1-4 of 4 results.