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!)
A375273 Expansion of 1/(1 - 2*x - 3*x^2 - 4*x^3 + 4*x^4). 1
1, 2, 7, 24, 73, 238, 763, 2436, 7821, 25050, 80255, 257200, 824081, 2640582, 8461187, 27111644, 86872853, 278363058, 891946503, 2858027016, 9157854361, 29344123550, 94026132235, 301283944500, 965391362461, 3093362593162, 9911930522767, 31760378496864 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = 2*a(n-1) + 3*a(n-2) + 4*a(n-3) - 4*a(n-4).
a(n) = (1/2) * Sum_{k=0..floor(n/2)} 2^k * binomial(2*n-2*k+2,2*k+1).
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(1/(1-2*x-3*x^2-4*x^3+4*x^4))
(PARI) a(n) = sum(k=0, n\2, 2^k*binomial(2*n-2*k+2, 2*k+1))/2;
CROSSREFS
Sequence in context: A082047 A370306 A341803 * A272483 A129020 A024024
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 09 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 16 09:24 EDT 2024. Contains 375965 sequences. (Running on oeis4.)