login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A360833
Expansion of Sum_{k>=0} ( k * x / (1 - (k * x)^3) )^k.
1
1, 1, 4, 27, 257, 3189, 48843, 889080, 18731109, 448004763, 11987812504, 354763577414, 11503684020051, 405589341060930, 15447798292502206, 632069580794524857, 27649951709582591394, 1287748889361331630661, 63616184683123273364961
OFFSET
0,3
FORMULA
a(n) = Sum_{k=0..floor(n/3)} (n-3*k)^n * binomial(n-2*k-1,k).
PROG
(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));
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Feb 22 2023
STATUS
approved