The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A364833 G.f. satisfies A(x) = 1 + x*A(x)^2/(1 - x^3*A(x)^3). 3
1, 1, 2, 5, 15, 49, 168, 595, 2160, 7997, 30083, 114660, 441840, 1718531, 6737820, 26600784, 105659970, 421949492, 1693120779, 6823018035, 27602090087, 112053680381, 456343848121, 1863893501065, 7633232165286, 31337360839387, 128944120202510 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = Sum_{k=0..floor(n/3)} binomial(n-2*k-1,k) * binomial(2*n-3*k+1,n-3*k)/(2*n-3*k+1).
D-finite with recurrence 31*n*(626109182191*n-1858292669035) *(n-1)*(n+1) *a(n) -n*(n-1) *(244150473843619*n^2 -1454194662255591*n +2175006457069082) *a(n-1) +3*(n-1) *(292927551362415*n^3 -2593205532882651*n^2 +7084566217454162*n -5823331737745632)*a(n-2) +(-843955616916167*n^4 +9932491073296715*n^3 -42016891739306929*n^2 +76184884157722453*n -50166914106142776) *a(n-3) +18*(1509721335071*n^4 -40413442328880*n^3 +330301781039401*n^2 -1078322794857576*n +1231650372542192) *a(n-4) +18*(39673125909769*n^4 -598320530478001*n^3 +3228489073613917*n^2 -7321259523567459*n +5788776339353646) *a(n-5) +27*(n-5) *(3102413205331*n^3 -35996479327373*n^2 +114122791959960*n -64735736097804) *a(n-6) -243*(n-6) *(n-7)*(475638134099*n^2 -2399948859181*n +2877042451214) *a(n-7) -243*(45857481910*n -35520400961) *(n-5) *(n-7) *(n-8)*a(n-8)=0. - R. J. Mathar, Aug 29 2023
MAPLE
A364833 := proc(n)
add( binomial(n-2*k-1, k)*binomial(2*n-3*k+1, n-3*k)/ (2*n-3*k+1), k=0..floor(n/3)) ;
end proc:
seq(A364833(n), n=0..80); # R. J. Mathar, Aug 29 2023
PROG
(PARI) a(n) = sum(k=0, n\3, binomial(n-2*k-1, k)*binomial(2*n-3*k+1, n-3*k)/(2*n-3*k+1));
CROSSREFS
Sequence in context: A366054 A369631 A063021 * A301832 A272460 A149937
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 28 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 June 12 15:57 EDT 2024. Contains 373333 sequences. (Running on oeis4.)