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.

A377426 E.g.f. satisfies A(x) = 1/(1 + log(1 - x*A(x)^4)).

Original entry on oeis.org

1, 1, 11, 254, 9096, 443874, 27487034, 2065181880, 182545878152, 18562391987880, 2134764133508832, 273978733525211472, 38820518588599921200, 6019219063397716575840, 1013766602891962529642832, 184300120562198063868474624, 35971439241165448281366023424
Offset: 0

Views

Author

Seiichi Manyama, Oct 28 2024

Keywords

Crossrefs

Programs

  • PARI
    a(n) = sum(k=0, n, (4*n+k)!*abs(stirling(n, k, 1)))/(4*n+1)!;

Formula

a(n) = (1/(4*n+1)!) * Sum_{k=0..n} (4*n+k)! * |Stirling1(n,k)|.

A377429 Expansion of e.g.f. (1/x) * Series_Reversion( x*(1 + log(1-x))^4 ).

Original entry on oeis.org

1, 4, 56, 1436, 54540, 2763696, 175688744, 13457185080, 1207241712536, 124205544781728, 14420516981211360, 1865347268407271040, 266056506383725529568, 41485848013549310521536, 7021170794004780911946048, 1281852242007649764308226240, 251124461130948243588667169280
Offset: 0

Views

Author

Seiichi Manyama, Oct 28 2024

Keywords

Crossrefs

Programs

  • PARI
    my(N=20, x='x+O('x^N)); Vec(serlaplace(serreverse(x*(1+log(1-x))^4)/x))
    
  • PARI
    a(n) = 4*sum(k=0, n, (4*n+k+3)!*abs(stirling(n, k, 1)))/(4*n+4)!;

Formula

E.g.f. A(x) satisfies A(x) = 1/(1 + log(1 - x*A(x)))^4.
E.g.f.: B(x)^4, where B(x) is the e.g.f. of A377426.
a(n) = (4/(4*n+4)!) * Sum_{k=0..n} (4*n+k+3)! * |Stirling1(n,k)|.
Showing 1-2 of 2 results.