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!)
A367071 G.f. satisfies A(x) = 1 + 2*x + 2*x^2*A(x)^2. 1
1, 2, 2, 8, 16, 48, 136, 384, 1184, 3520, 10944, 34048, 107008, 340480, 1087104, 3502080, 11333120, 36867072, 120491008, 395276288, 1301700608, 4300414976, 14250496000, 47353233408, 157747462144, 526740717568, 1762653863936, 5910312910848 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
G.f.: A(x) = 2*(1+2*x) / (1+sqrt(1-8*x^2*(1+2*x))).
a(n) = Sum_{k=0..floor(n/2)} 2^(n-k) * binomial(k+1,n-2*k) * A000108(k).
D-finite with recurrence (n+2)*a(n) +8*(-n+1)*a(n-2) +8*(-2*n+5)*a(n-3)=0. - R. J. Mathar, Dec 04 2023
MAPLE
A367071 := proc(n)
add(2^(n-k) * binomial(k+1, n-2*k) * A000108(k), k=0..floor(n/2)) ;
end proc:
seq(A367071(n), n=0..70) ; # R. J. Mathar, Dec 04 2023
PROG
(PARI) a(n) = sum(k=0, n\2, 2^(n-k)*binomial(k+1, n-2*k)*binomial(2*k, k)/(k+1));
CROSSREFS
Sequence in context: A220589 A109190 A016120 * A188115 A085542 A239682
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Nov 05 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 April 27 10:59 EDT 2024. Contains 372018 sequences. (Running on oeis4.)