login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A360709 Expansion of Sum_{k>=0} (x^3 / (1 - k*x))^k. 4
1, 0, 0, 1, 1, 1, 2, 5, 13, 34, 90, 247, 720, 2256, 7568, 26814, 98982, 377541, 1484254, 6021789, 25271173, 109850447, 494355359, 2298362532, 11008133629, 54175202125, 273460921605, 1414449612648, 7494262602464, 40669492399396 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,7
LINKS
FORMULA
a(n) = Sum_{k=1..floor(n/3)} k^(n-3*k) * binomial(n-2*k-1,k-1) for n > 0.
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(sum(k=0, N, (x^3/(1-k*x))^k))
(PARI) a(n) = if(n==0, 1, sum(k=1, n\3, k^(n-3*k)*binomial(n-2*k-1, k-1)));
CROSSREFS
Sequence in context: A023425 A304173 A217896 * A090827 A109192 A192313
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Feb 17 2023
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified August 22 22:00 EDT 2024. Contains 375369 sequences. (Running on oeis4.)