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.

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

Original entry on oeis.org

1, 1, 6, 68, 1152, 26144, 745952, 25678512, 1036151680, 47977039488, 2507929819392, 146106188393472, 9387670177320960, 659534185673994240, 50299364999073742848, 4138631751212820025344, 365438936930414973419520, 34469156894239754317332480
Offset: 0

Views

Author

Seiichi Manyama, Mar 06 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) = sum(k=0, n, 2^(n-k)*(n+k)!*abs(stirling(n, k, 1)))/(n+1)!;

Formula

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

A377803 Expansion of e.g.f. (1/x) * Series_Reversion( x/(1 - log(1-3*x) / 3) ).

Original entry on oeis.org

1, 1, 5, 51, 798, 16914, 453294, 14704542, 560274336, 24529661568, 1213557885720, 66956662956600, 4076440417367856, 271472012197547472, 19631093304600307152, 1531919987372848152240, 128314172533501646058240, 11482569303348317402868480, 1093343670892117401737893632
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-3*x)/3))/x))
    
  • PARI
    a(n) = n!*sum(k=0, n, 3^(n-k)*abs(stirling(n, k, 1))/(n-k+1)!);

Formula

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