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.

A354310 Expansion of e.g.f. 1/(1 - 3*x)^(x/3).

Original entry on oeis.org

1, 0, 2, 9, 84, 990, 14754, 264600, 5549424, 133217784, 3601384200, 108249692760, 3580724721672, 129250420556400, 5055196156459344, 212951257371183240, 9612027759287831040, 462798880374787387200, 23675607840207619145664, 1282413928716141429168000
Offset: 0

Views

Author

Seiichi Manyama, May 23 2022

Keywords

Crossrefs

Programs

  • PARI
    my(N=30, x='x+O('x^N)); Vec(serlaplace(1/(1-3*x)^(x/3)))
    
  • PARI
    a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=(i-1)!*sum(j=2, i, j*3^(j-2)/(j-1)*v[i-j+1]/(i-j)!)); v;
    
  • PARI
    a(n) = n!*sum(k=0, n\2, 3^(n-2*k)*abs(stirling(n-k, k, 1))/(n-k)!);

Formula

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

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

Original entry on oeis.org

1, 0, 2, 6, 56, 480, 5664, 75600, 1182208, 20829312, 410768640, 8943010560, 213187497984, 5520777799680, 154333888579584, 4631752470159360, 148523272512307200, 5067610703150284800, 183308248516478828544, 7006773595450681589760, 282194468488468121518080
Offset: 0

Views

Author

Seiichi Manyama, May 23 2022

Keywords

Crossrefs

Programs

  • PARI
    my(N=30, x='x+O('x^N)); Vec(serlaplace(1/(1+x/2*log(1-2*x))))
    
  • PARI
    a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=i!*sum(j=2, i, 2^(j-2)/(j-1)*v[i-j+1]/(i-j)!)); v;
    
  • PARI
    a(n) = n!*sum(k=0, n\2, 2^(n-2*k)*k!*abs(stirling(n-k, k, 1))/(n-k)!);

Formula

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