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

A353256 Expansion of Sum_{k>=0} x^k * Product_{j=0..k-1} (3 * j + x).

Original entry on oeis.org

1, 0, 1, 3, 19, 171, 2044, 30528, 547390, 11457237, 274198402, 7385438214, 221099038597, 7282925988615, 261763288109884, 10194190355448399, 427609812103844122, 19220373155515189149, 921621193002227307943, 46958377673245988620737
Offset: 0

Views

Author

Seiichi Manyama, Apr 08 2022

Keywords

Crossrefs

Programs

  • Mathematica
    a[n_] := Sum[3^(n-2*k) * Abs[StirlingS1[n - k, k]], {k, 0, Floor[n/2]}]; Array[a, 20, 0] (* Amiram Eldar, Apr 09 2022 *)
  • PARI
    my(N=20, x='x+O('x^N)); Vec(sum(k=0, N, x^k*prod(j=0, k-1, 3*j+x)))
    
  • PARI
    a(n) = sum(k=0, n\2, 3^(n-2*k)*abs(stirling(n-k, k, 1)));

Formula

a(n) = Sum_{k=0..floor(n/2)} 3^(n-2*k) * |Stirling1(n-k,k)|.

A353255 Expansion of Sum_{k>=0} x^k * Product_{j=0..k-1} (2 * j + x).

Original entry on oeis.org

1, 0, 1, 2, 9, 54, 429, 4252, 50605, 703388, 11184597, 200247446, 3986363597, 87343744490, 2088739037209, 54134344486296, 1511446306795417, 45227224242345336, 1443916049346447913, 48989635949583331658, 1760229264304229244753, 66770472164443344587550
Offset: 0

Views

Author

Seiichi Manyama, Apr 08 2022

Keywords

Crossrefs

Programs

  • Mathematica
    a[n_] := Sum[2^(n-2*k) * Abs[StirlingS1[n - k, k]], {k, 0, Floor[n/2]}]; Array[a, 20, 0] (* Amiram Eldar, Apr 09 2022 *)
  • PARI
    my(N=40, x='x+O('x^N)); Vec(sum(k=0, N, x^k*prod(j=0, k-1, 2*j+x)))
    
  • PARI
    a(n) = sum(k=0, n\2, 2^(n-2*k)*abs(stirling(n-k, k, 1)));

Formula

a(n) = Sum_{k=0..floor(n/2)} 2^(n-2*k) * |Stirling1(n-k,k)|.

A353257 Expansion of Sum_{k>=0} x^k * Product_{j=0..k-1} (2 * j - x).

Original entry on oeis.org

1, 0, -1, -2, -7, -42, -341, -3452, -41835, -590452, -9511213, -172182182, -3460540075, -76455710870, -1841772619273, -48043721545240, -1349168210580087, -40581475067022120, -1301688751836211065, -44352720153871514858, -1599833618118922360175
Offset: 0

Views

Author

Seiichi Manyama, Apr 08 2022

Keywords

Crossrefs

Programs

  • Mathematica
    a[n_] := Sum[(-1)^k * 2^(n - 2*k) * Abs[StirlingS1[n - k, k]], {k, 0, Floor[n/2]}]; Array[a, 20, 0] (* Amiram Eldar, Apr 09 2022 *)
  • PARI
    my(N=40, x='x+O('x^N)); Vec(sum(k=0, N, x^k*prod(j=0, k-1, 2*j-x)))
    
  • PARI
    a(n) = sum(k=0, n\2, (-1)^k*2^(n-2*k)*abs(stirling(n-k, k, 1)));

Formula

a(n) = Sum_{k=0..floor(n/2)} (-1)^k * 2^(n-2*k) * |Stirling1(n-k,k)|.
Showing 1-3 of 3 results.