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.

A375224 Expansion of e.g.f. exp( x^2/(1-x)^3 ) / (1-x)^2.

Original entry on oeis.org

1, 2, 8, 54, 492, 5400, 68520, 987000, 15928080, 284588640, 5570994240, 118432147680, 2714315123520, 66662973336960, 1745585471710080, 48522632817859200, 1426443527673964800, 44200671544495065600, 1439417651948346470400, 49134301244829555955200
Offset: 0

Views

Author

Seiichi Manyama, Aug 06 2024

Keywords

Crossrefs

Programs

  • PARI
    my(N=20, x='x+O('x^N)); Vec(serlaplace(exp(x^2/(1-x)^3)/(1-x)^2))
    
  • PARI
    a(n) = n!*sum(k=0, n\2, binomial(n+1+k, n-2*k)/k!);

Formula

a(n) = n! * Sum_{k=0..floor(n/2)} binomial(n+1+k,n-2*k)/k!.

A375225 Expansion of e.g.f. exp( x^2/(1-x)^3 ) / (1-x)^3.

Original entry on oeis.org

1, 3, 14, 96, 876, 9780, 127200, 1877400, 30947280, 563114160, 11202135840, 241655641920, 5614182826560, 139647350082240, 3700648372861440, 104032358410780800, 3090961262246457600, 96747013002684844800, 3180863885996673676800, 109570715078766355814400
Offset: 0

Views

Author

Seiichi Manyama, Aug 06 2024

Keywords

Crossrefs

Programs

  • Mathematica
    With[{nn=20},CoefficientList[Series[Exp[x^2/(1-x)^3]/(1-x)^3,{x,0,nn}],x] Range[0,nn]!] (* Harvey P. Dale, Nov 20 2024 *)
  • PARI
    my(N=20, x='x+O('x^N)); Vec(serlaplace(exp(x^2/(1-x)^3)/(1-x)^3))
    
  • PARI
    a(n) = n!*sum(k=0, n\2, binomial(n+2+k, n-2*k)/k!);

Formula

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