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!)
A371927 Expansion of 1/(1 - x/(1 - 8*x^2)^(1/4)). 1
1, 1, 1, 3, 5, 17, 33, 113, 237, 803, 1769, 5915, 13493, 44547, 104337, 340527, 814397, 2630857, 6399865, 20486905, 50548997, 160507953, 400834465, 1263577141, 3188428301, 9985916077, 25426685961, 79168607025, 203193847381, 629311885861, 1626634117809 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(n) = Sum_{k=0..floor(n/2)} 8^k * binomial((n+2*k)/4-1,k).
MAPLE
A371927 := proc(n)
add(8^k*binomial((n+2*k)/4-1, k), k=0..floor(n/2)) ;
end proc:
seq(A371927(n), n=0..70) ; # R. J. Mathar, Jun 07 2024
PROG
(PARI) a(n) = sum(k=0, n\2, 8^k*binomial((n+2*k)/4-1, k));
CROSSREFS
Sequence in context: A007802 A056816 A156761 * A151261 A148504 A148505
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jun 07 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 8 01:56 EDT 2024. Contains 375018 sequences. (Running on oeis4.)