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.

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

Original entry on oeis.org

1, 1, 4, 27, 257, 3189, 48843, 889080, 18731109, 448004763, 11987812504, 354763577414, 11503684020051, 405589341060930, 15447798292502206, 632069580794524857, 27649951709582591394, 1287748889361331630661, 63616184683123273364961
Offset: 0

Views

Author

Seiichi Manyama, Feb 22 2023

Keywords

Crossrefs

Programs

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

Formula

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