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.

A360812 Expansion of Sum_{k>=0} ( x / (1 - (k * x)^2) )^k.

Original entry on oeis.org

1, 1, 1, 2, 9, 29, 113, 613, 3033, 17010, 110929, 713249, 5061097, 38762873, 302389553, 2544613578, 22404995001, 203762678941, 1960880744337, 19509713674397, 201306862742217, 2166901479447194, 24018963506471921, 275731857268608673, 3271769647891351705
Offset: 0

Views

Author

Seiichi Manyama, Feb 21 2023

Keywords

Crossrefs

Programs

  • PARI
    my(N=30, x='x+O('x^N)); Vec(sum(k=0, N, (x/(1-(k*x)^2))^k))
    
  • PARI
    a(n) = sum(k=0, n\2, (n-2*k)^(2*k)*binomial(n-k-1, k));

Formula

a(n) = Sum_{k=0..floor(n/2)} (n-2*k)^(2*k) * binomial(n-k-1,k).