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!)
A375362 Expansion of 1/( (1 + x) * (1 - x*(1 + x)^3) ). 1
1, 0, 4, 6, 20, 49, 132, 344, 908, 2384, 6273, 16492, 43372, 114050, 299916, 788673, 2073944, 5453760, 14341528, 37713312, 99173121, 260791400, 685792228, 1803399102, 4742323108, 12470688497, 32793647356, 86236081272, 226771411940, 596331286320 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = 4*a(n-2) + 6*a(n-3) + 4*a(n-4) + a(n-5).
a(n) = Sum_{k=0..n} binomial(3*k-1,n-k).
a(n) = A375363(n) + A375363(n-1).
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(1/((1+x)*(1-x*(1+x)^3)))
(PARI) a(n) = sum(k=0, n, binomial(3*k-1, n-k));
CROSSREFS
Cf. A375363.
Sequence in context: A227959 A088015 A374259 * A027377 A048789 A038069
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 13 2024
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 September 10 23:44 EDT 2024. Contains 375795 sequences. (Running on oeis4.)