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.

A368265 Expansion of e.g.f. exp(2*x) / (1 - x*exp(x)).

Original entry on oeis.org

1, 3, 12, 65, 460, 4057, 42922, 529769, 7472808, 118586033, 2090936014, 40554647377, 858082563532, 19668880007129, 485528656965762, 12841428220413593, 362276791422785488, 10859170086870710497, 344648459867067117334, 11546148650974694099201
Offset: 0

Views

Author

Seiichi Manyama, Dec 19 2023

Keywords

Crossrefs

Programs

  • PARI
    a(n) = n!*sum(k=0, n, (n-k+2)^k/k!);

Formula

a(n) = n! * Sum_{k=0..n} (n-k+2)^k / k!.
a(n) ~ n! / ((1 + LambertW(1)) * LambertW(1)^(n+2)). - Vaclav Kotesovec, Dec 29 2023

A379992 Expansion of e.g.f. exp(-3*x)/(exp(-x) - x)^2.

Original entry on oeis.org

1, 1, 7, 41, 349, 3539, 42451, 585605, 9130297, 158692679, 3041499871, 63712004729, 1447946191957, 35479218963083, 932326476195115, 26153289728300909, 779995883104560241, 24644267406802467215, 822278654588440803511, 28891372907012629446881
Offset: 0

Views

Author

Seiichi Manyama, Jan 07 2025

Keywords

Crossrefs

Programs

  • Mathematica
    With[{nn=20},CoefficientList[Series[Exp[-3x]/(Exp[-x]-x)^2,{x,0,nn}],x] Range[0,nn]!] (* Harvey P. Dale, Jun 14 2025 *)
  • PARI
    a(n) = n!*sum(k=0, n, (k+1)*(k-1)^(n-k)/(n-k)!);

Formula

a(n) = n! * Sum_{k=0..n} (k+1) * (k-1)^(n-k)/(n-k)!.
Showing 1-2 of 2 results.