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”).

A360731
Expansion of Sum_{k>=0} (k * x * (1 + k*x^3))^k.
5
1, 1, 4, 27, 257, 3141, 46899, 827639, 16855357, 389100834, 10040378183, 286386193685, 8947506702834, 303875954083536, 11146559606379269, 439178938765108083, 18497974976610341624, 829420114454360154295, 39445018962975879216867
OFFSET
0,3
LINKS
FORMULA
a(n) = Sum_{k=0..floor(n/4)} (n-3*k)^(n-2*k) * binomial(n-3*k,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\4, (n-3*k)^(n-2*k)*binomial(n-3*k, k));
CROSSREFS
Sequence in context: A360776 A360728 A353014 * A328694 A353015 A360032
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Feb 18 2023
STATUS
approved