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!)
A367056 G.f. satisfies A(x) = 1 + x*A(x)^2 + x^3*A(x). 1
1, 1, 2, 6, 17, 52, 168, 561, 1922, 6719, 23871, 85938, 312823, 1149421, 4257460, 15880036, 59594517, 224856450, 852491806, 3245959002, 12407332166, 47592364107, 183139542306, 706794663136, 2735053815771, 10609811267757, 41251228784198 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
G.f.: A(x) = 2 / (1-x^3+sqrt((1-x^3)^2-4*x)).
a(n) = Sum_{k=0..floor(n/3)} binomial(n-2*k+1,k) * binomial(2*n-5*k,n-3*k)/(n-2*k+1).
D-finite with recurrence (n+1)*a(n) +2*(-2*n+1)*a(n-1) +(-2*n+7)*a(n-3) +(n-8)*a(n-6)=0. - R. J. Mathar, Dec 04 2023
MAPLE
A367056 := proc(n)
add(binomial(n-2*k+1, k) * binomial(2*n-5*k, n-3*k)/(n-2*k+1), k=0..floor(n/3)) ;
end proc:
seq(A367056(n), n=0..70) ; # R. J. Mathar, Dec 04 2023
PROG
(PARI) a(n) = sum(k=0, n\3, binomial(n-2*k+1, k)*binomial(2*n-5*k, n-3*k)/(n-2*k+1));
CROSSREFS
Sequence in context: A148452 A307975 A364329 * A368598 A346428 A148453
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Nov 04 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 20:19 EDT 2024. Contains 372020 sequences. (Running on oeis4.)