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-20 of 23 results. Next

A301419 a(n) = [x^n] Sum_{k>=0} x^k/Product_{j=1..k} (1 - n*j*x).

Original entry on oeis.org

1, 1, 3, 19, 201, 3176, 69823, 2026249, 74565473, 3376695763, 183991725451, 11854772145800, 890415496931689, 77023751991841669, 7592990698770559111, 845240026276785888451, 105409073489605774592897, 14625467507717709778793020, 2244123413703647502288608467, 378751257186051653931253015229
Offset: 0

Views

Author

Ilya Gutkovskiy, Mar 20 2018

Keywords

Crossrefs

Programs

  • GAP
    List([0..20],n->Sum([0..n],k->n^(n-k)*Stirling2(n,k))); # Muniru A Asiru, Mar 20 2018
    
  • Mathematica
    Table[SeriesCoefficient[Sum[x^k/Product[(1 - n j x), {j, 1, k}], {k, 0, n}], {x, 0, n}], {n, 0, 19}]
    Join[{1}, Table[n! SeriesCoefficient[Exp[(Exp[n x] - 1)/n], {x, 0, n}], {n, 19}]]
    Join[{1}, Table[Sum[n^(n - k) StirlingS2[n, k], {k, 0, n}], {n, 19}]]
    (* Or: *)
    A301419[n_] := If[n == 0, 1, n^n BellB[n, 1/n]];
    Table[A301419[n], {n, 0, 19}] (* Peter Luschny, Dec 22 2021 *)
  • PARI
    a(n) = sum(k=0, n, n^(n-k)*stirling(n, k, 2)); \\ Michel Marcus, Mar 23 2018

Formula

a(n) = n! * [x^n] exp((exp(n*x) - 1)/n), for n > 0.
a(n) = Sum_{k=0..n} n^(n-k)*Stirling2(n,k).
a(n) = n^n * BellPolynomial(n, 1/n) for n >= 1. - Peter Luschny, Dec 22 2021
a(n) ~ exp(n/LambertW(n^2) - n) * n^(2*n) / (sqrt(1 + LambertW(n^2)) * LambertW(n^2)^n). - Vaclav Kotesovec, Jun 06 2022

A351050 G.f. A(x) satisfies: A(x) = 1 + x + x^2 * A(x/(1 - 4*x)) / (1 - 4*x).

Original entry on oeis.org

1, 1, 1, 5, 25, 129, 713, 4373, 30289, 235041, 1998001, 18226117, 176364969, 1803064033, 19463340729, 221691818005, 2658751147297, 33458500940993, 440140082161121, 6032572875160069, 85936355674437561, 1270176766188103105, 19453176663852208937
Offset: 0

Views

Author

Ilya Gutkovskiy, Jan 30 2022

Keywords

Comments

Shifts 2 places left under 4th-order binomial transform.

Crossrefs

Programs

  • Mathematica
    nmax = 22; A[] = 0; Do[A[x] = 1 + x + x^2 A[x/(1 - 4 x)]/(1 - 4 x) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
    a[0] = a[1] = 1; a[n_] := a[n] = Sum[Binomial[n - 2, k] 4^k a[n - k - 2], {k, 0, n - 2}]; Table[a[n], {n, 0, 22}]

Formula

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

A049378 Row sums of triangle A049353.

Original entry on oeis.org

1, 1, 6, 46, 436, 4956, 65776, 996976, 16957536, 319259296, 6581662336, 147290942976, 3552885191296, 91827536814976, 2530228890080256, 74003737259670016, 2288810287491774976, 74607500831801289216, 2555587654482227055616, 91746983502042106018816
Offset: 0

Views

Author

Keywords

Crossrefs

Column k=5 of A291709.

Programs

  • Maple
    a:= proc(n) option remember; `if`(n=0, 1, add(
          binomial(n-1, j-1)*(j+3)!/4!*a(n-j), j=1..n))
        end:
    seq(a(n), n=0..25);  # Alois P. Heinz, Aug 01 2017
  • Mathematica
    a[0] = 1; a[n_] := a[n] = Sum[Binomial[n - 1, j - 1]*(j + 3)!/4!*a[n - j], {j, 1, n}];
    Table[a[n], {n, 0, 25}] (* Jean-François Alcover, Jun 04 2018, after Alois P. Heinz *)

Formula

E.g.f. exp(p(x)) with p(x) := x*(2-x)*(2-2*x+x^2)/(4*(1-x)^4) (E.g.f. first column of A049353).
From Seiichi Manyama, Jan 18 2025: (Start)
a(n) = Sum_{k=0..n} |Stirling1(n,k)| * A004213(k).
a(n) = (1/exp(1/4)) * (-1)^n * n! * Sum_{k>=0} binomial(-4*k,n)/(4^k * k!). (End)

Extensions

a(0)=1 prepended by Alois P. Heinz, Aug 01 2017

A241578 Square array read by antidiagonals upwards: T(n,k) = Sum_{j=1..k} n^(k-j)*Stirling_2(k,j) (n >= 0, k >= 1).

Original entry on oeis.org

1, 1, 1, 1, 2, 1, 1, 3, 5, 1, 1, 4, 11, 15, 1, 1, 5, 19, 49, 52, 1, 1, 6, 29, 109, 257, 203, 1, 1, 7, 41, 201, 742, 1539, 877, 1, 1, 8, 55, 331, 1657, 5815, 10299, 4140, 1, 1, 9, 71, 505, 3176, 15821, 51193, 75905, 21147, 1, 1, 10, 89, 729, 5497, 35451, 170389, 498118, 609441, 115975, 1
Offset: 0

Views

Author

N. J. A. Sloane, Apr 29 2014

Keywords

Examples

			Array begins:
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...
1, 2, 5, 15, 52, 203, 877, 4140, 21147, 115975, 678570, 4213597, ...
1, 3, 11, 49, 257, 1539, 10299, 75905, 609441, 5284451, 49134923, 487026929, ...
1, 4, 19, 109, 742, 5815, 51193, 498118, 5296321, 60987817, 754940848, 9983845261, ...
1, 5, 29, 201, 1657, 15821, 170389, 2032785, 26546673, 376085653, 5736591885, 93614616409, ...
1, 6, 41, 331, 3176, 35451, 447981, 6282416, 96546231, 1611270851, 28985293526, 558413253581, ...
1, 7, 55, 505, 5497, 69823, 1007407, 16157905, 284214097, 5432922775, 112034017735, 2476196276617, ...
1, 8, 71, 729, 8842, 125399, 2026249, 36458010, 719866701, 15453821461, 358100141148, 8899677678109, ...
...
		

Crossrefs

Three versions of this array are A111673, A241578, A241579.

Programs

  • Maple
    with(combinat):
    T:=(n,k)->add(n^(k-j)*stirling2(k,j),j=1..k);
    r:=n->[seq(T(n,k),k=1..12)];
    for n from 0 to 8 do lprint(r(n)); od:

A337040 a(n) = exp(-1/4) * Sum_{k>=0} (4*k - 1)^n / (4^k * k!).

Original entry on oeis.org

1, 0, 4, 16, 112, 896, 8384, 88320, 1032448, 13242368, 184591360, 2773929984, 44641579008, 765196926976, 13905753980928, 266855007453184, 5388980396818432, 114172599765827584, 2530858142594760704, 58556990344729198592, 1411095950792925904896, 35347148031264582270976
Offset: 0

Views

Author

Ilya Gutkovskiy, Aug 12 2020

Keywords

Crossrefs

Programs

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

Formula

G.f. A(x) satisfies: A(x) = (1 - 4*x + x*A(x/(1 - 4*x))) / (1 - 3*x - 4*x^2).
G.f.: (1/(1 + x)) * Sum_{k>=0} (x/(1 + x))^k / Product_{j=1..k} (1 - 4*j*x/(1 + x)).
E.g.f.: exp((exp(4*x) - 1) / 4 - x).
a(0) = 1; a(n) = Sum_{k=1..n-1} binomial(n-1,k) * 4^k * a(n-k-1).
a(n) = Sum_{k=0..n} (-1)^(n-k) * binomial(n,k) * A004213(k).
a(n) ~ 4^(n - 1/4) * n^(n - 1/4) * exp(n/LambertW(4*n) - n - 1/4) / (sqrt(1 + LambertW(4*n)) * LambertW(4*n)^(n - 1/4)). - Vaclav Kotesovec, Jun 26 2022

A337594 a(0) = 1; a(n) = (1/n) * Sum_{k=1..n} binomial(n,k)^2 * k * 4^(k-1) * a(n-k).

Original entry on oeis.org

1, 1, 6, 58, 920, 21176, 654960, 26114768, 1298070912, 78359732608, 5630565514496, 473796572027648, 46060380961356800, 5114737212582603776, 642502387594286036992, 90542358999393528670208, 14209873001490130067095552, 2467784343879850163370295296, 471558856613839054976849608704
Offset: 0

Views

Author

Ilya Gutkovskiy, Sep 02 2020

Keywords

Crossrefs

Programs

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

Formula

Sum_{n>=0} a(n) * x^n / (n!)^2 = exp((BesselI(0,4*sqrt(x)) - 1) / 4).
Sum_{n>=0} a(n) * x^n / (n!)^2 = exp(Sum_{n>=1} 4^(n-1) * x^n / (n!)^2).

A351150 G.f. A(x) satisfies: A(x) = 1 + x^2 * A(x/(1 - 4*x)) / (1 - 4*x).

Original entry on oeis.org

1, 0, 1, 4, 17, 80, 433, 2724, 19489, 153536, 1301601, 11754084, 112802097, 1150079056, 12437130001, 142144768324, 1709041379393, 21522252928000, 282920962675905, 3873124754702660, 55125031662585425, 814541756986322128, 12477752083406752881, 197861190429889969252
Offset: 0

Views

Author

Ilya Gutkovskiy, Feb 02 2022

Keywords

Comments

Shifts 2 places left under 4th-order binomial transform.

Crossrefs

Programs

  • Mathematica
    nmax = 23; A[] = 0; Do[A[x] = 1 + x^2 A[x/(1 - 4 x)]/(1 - 4 x) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
    a[0] = 1; a[1] = 0; a[n_] := a[n] = Sum[Binomial[n - 2, k] 4^k a[n - k - 2], {k, 0, n - 2}]; Table[a[n], {n, 0, 23}]

Formula

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

A241579 Square array read by antidiagonals downwards: T(n,k) = Sum_{j=1..k} n^(k-j)*Stirling_2(k,j) (n >= 0, k >= 1).

Original entry on oeis.org

1, 1, 1, 1, 2, 1, 1, 5, 3, 1, 1, 15, 11, 4, 1, 1, 52, 49, 19, 5, 1, 1, 203, 257, 109, 29, 6, 1, 1, 877, 1539, 742, 201, 41, 7, 1, 1, 4140, 10299, 5815, 1657, 331, 55, 8, 1, 1, 21147, 75905, 51193, 15821, 3176, 505, 71, 9, 1, 1, 115975, 609441, 498118, 170389, 35451, 5497, 729, 89, 10, 1
Offset: 0

Views

Author

N. J. A. Sloane, Apr 29 2014

Keywords

Examples

			Array begins:
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...
1, 2, 5, 15, 52, 203, 877, 4140, 21147, 115975, 678570, 4213597, ...
1, 3, 11, 49, 257, 1539, 10299, 75905, 609441, 5284451, 49134923, 487026929, ...
1, 4, 19, 109, 742, 5815, 51193, 498118, 5296321, 60987817, 754940848, 9983845261, ...
1, 5, 29, 201, 1657, 15821, 170389, 2032785, 26546673, 376085653, 5736591885, 93614616409, ...
1, 6, 41, 331, 3176, 35451, 447981, 6282416, 96546231, 1611270851, 28985293526, 558413253581, ...
1, 7, 55, 505, 5497, 69823, 1007407, 16157905, 284214097, 5432922775, 112034017735, 2476196276617, ...
1, 8, 71, 729, 8842, 125399, 2026249, 36458010, 719866701, 15453821461, 358100141148, 8899677678109, ...
...
		

Crossrefs

Three versions of this array are A111673, A241578, A241579.

Programs

  • Maple
    with(combinat):
    T:=(n,k)->add(n^(k-j)*stirling2(k,j),j=1..k);
    r:=n->[seq(T(n,k),k=1..12)];
    for n from 0 to 8 do lprint(r(n)); od:

A351128 G.f. A(x) satisfies: A(x) = x + x^2 * A(x/(1 - 4*x)) / (1 - 4*x).

Original entry on oeis.org

0, 1, 0, 1, 8, 49, 280, 1649, 10800, 81505, 696400, 6472033, 63562872, 652984977, 7026210728, 79547049681, 949709767904, 11936248012993, 157219119485216, 2159448120457409, 30811324011852136, 455635009201780977, 6975424580445456056, 110478282815356437809
Offset: 0

Views

Author

Ilya Gutkovskiy, Feb 03 2022

Keywords

Comments

Shifts 2 places left under 4th-order binomial transform.

Crossrefs

Programs

  • Mathematica
    nmax = 23; A[] = 0; Do[A[x] = x + x^2 A[x/(1 - 4 x)]/(1 - 4 x) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
    a[0] = 0; a[1] = 1; a[n_] := a[n] = Sum[Binomial[n - 2, k] 4^k a[n - k - 2], {k, 0, n - 2}]; Table[a[n], {n, 0, 23}]

Formula

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

A355167 a(n) = exp(-1/4) * Sum_{k>=0} (4*k + 3)^n / (4^k * k!).

Original entry on oeis.org

1, 4, 20, 128, 1008, 9280, 96704, 1120768, 14274816, 197833728, 2958521344, 47415508992, 809838505984, 14670950907904, 280760761434112, 5655835404271616, 119561580162646016, 2645030742360588288, 61087848487323959296, 1469652941137655103488, 36758243982057508175872, 954111239026567129595904
Offset: 0

Views

Author

Ilya Gutkovskiy, Jun 22 2022

Keywords

Crossrefs

Programs

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

Formula

E.g.f.: exp(3*x + (exp(4*x) - 1) / 4).
a(0) = 1; a(n) = 3 * a(n-1) + Sum_{k=1..n} binomial(n-1,k-1) * 4^(k-1) * a(n-k).
a(n) = Sum_{k=0..n} binomial(n,k) * 3^(n-k) * A004213(k).
a(n) ~ 2^(2*n + 3/2) * n^(n + 3/4) * exp(n/LambertW(4*n) - n - 1/4) / (sqrt(1 + LambertW(4*n)) * LambertW(4*n)^(n + 3/4)). - Vaclav Kotesovec, Jun 27 2022
Previous Showing 11-20 of 23 results. Next