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!)
A360272 a(n) = Sum_{k=0..floor(n/3)} binomial(n-3*k,k) * Catalan(n-3*k). 2
1, 1, 2, 5, 15, 46, 147, 485, 1642, 5669, 19883, 70646, 253755, 919925, 3361546, 12368661, 45786219, 170400470, 637200555, 2392962645, 9021255722, 34128098389, 129519490219, 492966689110, 1881289209003, 7197100511317, 27595769836714, 106032318322517 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
G.f.: c(x * (1+x^3)), where c(x) is the g.f. of A000108.
a(n) ~ 2 * sqrt(1-3*r) / (sqrt(Pi) * n^(3/2) * r^n), where r = 0.2463187933841... is the smallest positive root of the equation1 1 - 4*r - 4*r^4 = 0. - Vaclav Kotesovec, Feb 01 2023
D-finite with recurrence (n+1)*a(n) +2*(-2*n+1)*a(n-1) +(n+1)*a(n-3) +2*(-4*n+11)*a(n-4) +4*(-n+5)*a(n-7)=0. - R. J. Mathar, Mar 12 2023
MAPLE
A360272 := proc(n)
add(binomial(n-3*k, k)*A000108(n-3*k), k=0..n/3) ;
end proc:
seq(A360272(n), n=0..70) ; # R. J. Mathar, Mar 12 2023
PROG
(PARI) a(n) = sum(k=0, n\3, binomial(n-3*k, k)*binomial(2*(n-3*k), n-3*k)/(n-3*k+1));
(PARI) my(N=30, x='x+O('x^N)); Vec(2/(1+(sqrt(1-4*x*(1+x^3)))))
CROSSREFS
Sequence in context: A139782 A047086 A071731 * A268648 A148360 A148361
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jan 31 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 July 3 19:01 EDT 2024. Contains 373983 sequences. (Running on oeis4.)