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!)
A375276 Expansion of 1/sqrt(1 - 4*x - 8*x^3 + 4*x^4). 0
1, 2, 6, 24, 92, 360, 1448, 5888, 24144, 99744, 414432, 1729920, 7249088, 30476416, 128487552, 543014912, 2299764992, 9758138880, 41473582592, 176530905088, 752401603584, 3210723420160, 13716154361856, 58653842276352, 251049168687104, 1075442759868416 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
n * a(n) = 2*(2*n-1)*a(n-1) + 4*(2*n-3)*a(n-3) - 4*(n-2)*a(n-4).
a(n) = Sum_{k=0..floor(n/2)} 2^(n-k) * binomial(n-k,k)^2.
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(1/sqrt(1-4*x-8*x^3+4*x^4))
(PARI) a(n) = sum(k=0, n\2, 2^(n-k)*binomial(n-k, k)^2);
CROSSREFS
Cf. A108485.
Sequence in context: A003450 A192466 A367274 * A374598 A361752 A115220
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 August 31 21:24 EDT 2024. Contains 375573 sequences. (Running on oeis4.)