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!)
A360274 a(n) = Sum_{k=0..floor(n/3)} Catalan(n-3*k). 3
1, 1, 2, 6, 15, 44, 138, 444, 1474, 5000, 17240, 60260, 213012, 760140, 2734700, 9907857, 36117810, 132379490, 487546557, 1803381000, 6696499910, 24953813577, 93285944640, 349756113560, 1314857960901, 4955232346092, 18717109185712, 70848408876905 (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^(2*n+6) / (63*sqrt(Pi)*n^(3/2)). - 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*(2*n-1)*a(n-4)=0. - R. J. Mathar, Mar 12 2023
MAPLE
A360274 := proc(n)
add(A000108(n-3*k), k=0..n/3) ;
end proc:
seq(A360274(n), n=0..70) ; # R. J. Mathar, Mar 12 2023
PROG
(PARI) a(n) = sum(k=0, n\3, binomial(2*(n-3*k), n-3*k)/(n-3*k+1));
(PARI) my(N=30, x='x+O('x^N)); Vec(2/((1-x^3)*(1+sqrt(1-4*x))))
CROSSREFS
Cf. A000108.
Sequence in context: A264746 A052870 A293743 * A001444 A293744 A293745
KEYWORD
nonn,easy
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 16:42 EDT 2024. Contains 373982 sequences. (Running on oeis4.)