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.

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

Original entry on oeis.org

1, 0, 0, 1, 2, 3, 68, 389, 1542, 24810, 251564, 1814487, 27520734, 391640548, 4295115396, 69305652406, 1221344986380, 18207710383335, 329699350020676, 6759819628538561, 126950556666301050, 2624697847966227077, 60825028694289947940, 1365568620213461601924
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*k)/(1-k*x)^(k+1)))
    
  • PARI
    a(n) = sum(k=0, n\3, k^n*binomial(n-2*k, k));

Formula

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