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.

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

Original entry on oeis.org

1, 0, 0, 1, 1, 1, 65, 257, 769, 21732, 182268, 1075171, 22120299, 292415838, 2784944366, 52394511682, 914813711338, 12411977351379, 240868108545883, 5024364548461861, 88977315031536205, 1888119425325238979, 44744897995532996819, 971263427084750362992
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, ((k*x)^3/(1-k*x))^k))
    
  • PARI
    a(n) = sum(k=0, n\3, k^n*binomial(n-2*k-1, n-3*k));

Formula

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