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.

A368165 Expansion of e.g.f. -log(1 + x^2/2 * log(1 - x)).

Original entry on oeis.org

0, 0, 0, 3, 6, 20, 180, 1134, 7980, 78840, 798840, 8620920, 107668440, 1449377280, 20755871136, 323448048000, 5398086002400, 95487623038080, 1796842848654720, 35808112038746880, 751616958775939200, 16600116241063514880, 384905905873078867200
Offset: 0

Views

Author

Seiichi Manyama, Dec 14 2023

Keywords

Crossrefs

Programs

  • Mathematica
    With[{nn =30},CoefficientList[Series[-Log[1+x^2/2 Log[1-x]],{x,0,nn}],x] Range[0,nn]!] (* Harvey P. Dale, Jan 22 2024 *)
  • PARI
    a(n) = n!*sum(k=1, n\3, (k-1)!*abs(stirling(n-2*k, k, 1))/(2^k*(n-2*k)!));

Formula

a(n) = n! * Sum_{k=1..floor(n/3)} (k-1)! * |Stirling1(n-2*k,k)|/(2^k * (n-2*k)!).
a(0) = a(1) = a(2) = 0; a(n) = n!/(2*(n-2)) + Sum_{k=3..n-1} k!/(2*(k-2)) * binomial(n-1,k) * a(n-k). - Seiichi Manyama, Jan 22 2025

A366777 Expansion of e.g.f. -log(1 + x^3 * log(1 - x)).

Original entry on oeis.org

0, 0, 0, 0, 24, 60, 240, 1260, 28224, 241920, 2181600, 21621600, 395176320, 5915669760, 87034409280, 1321166246400, 26242709391360, 529649632512000, 10741214992435200, 221702803264051200, 5187617452174233600, 128491776028533657600
Offset: 0

Views

Author

Seiichi Manyama, Dec 15 2023

Keywords

Crossrefs

Programs

  • PARI
    a(n) = n!*sum(k=1, n\4, (k-1)!*abs(stirling(n-3*k, k, 1))/(n-3*k)!);

Formula

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