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.

Previous Showing 21-22 of 22 results.

A370910 Expansion of e.g.f. (1/x) * Series_Reversion( 4*x/(1 + 3*exp(4*x)) ).

Original entry on oeis.org

1, 3, 30, 534, 13944, 483528, 20979696, 1095048048, 66870491520, 4679735191680, 369376085620992, 32469964691563776, 3146279097351097344, 333211862918094763008, 38295176235674130905088, 4746999846951047891417088, 631337582065248312276910080
Offset: 0

Views

Author

Seiichi Manyama, Mar 05 2024

Keywords

Crossrefs

Programs

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

Formula

a(n) = 1/(4*(n+1)) * Sum_{k=0..n+1} 3^k * k^n * binomial(n+1,k).
a(n) = n! * Sum_{k=0..n} 3^k * 4^(n-k) * Stirling2(n,k)/(n-k+1)!. - Seiichi Manyama, Nov 07 2024

A377737 Expansion of e.g.f. (1/x) * Series_Reversion( x/(1 - log(1-2*x) / 2) ).

Original entry on oeis.org

1, 1, 4, 32, 392, 6504, 136464, 3466224, 103425664, 3546396288, 137423600640, 5939224680960, 283254408582144, 14777481937449984, 837175325044101120, 51182161648716349440, 3358765321328869539840, 235492308312669671424000, 17568539556367396687183872
Offset: 0

Views

Author

Seiichi Manyama, Nov 08 2024

Keywords

Crossrefs

Programs

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

Formula

a(n) = n! * Sum_{k=0..n} 2^(n-k) * |Stirling1(n,k)|/(n-k+1)!.
Previous Showing 21-22 of 22 results.