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-1 of 1 results.

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

Original entry on oeis.org

1, 0, 1, 2, 19, 393, 15177, 939394, 85063260, 10599342278, 1739073390797, 363404567436467, 94224446795779884, 29683590039199285223, 11167286542016941966714, 4945143125245884296040780, 2546112368234517215955646341, 1508197687055444623135714912377
Offset: 0

Views

Author

Seiichi Manyama, Apr 09 2022

Keywords

Crossrefs

Programs

  • PARI
    my(N=20, x='x+O('x^N)); Vec(sum(k=0, N, x^k*prod(j=0, k-1, k*j+x)))
    
  • PARI
    a(n) = sum(k=0, n\2, (n-k)^(n-2*k)*abs(stirling(n-k, k, 1)));

Formula

G.f.: Sum_{k>=0} x^k * Product_{j=0..k-1} (k * j + x).
Showing 1-1 of 1 results.