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!)
A026935 a(n) = Sum_{k=0..n-2} T(n,k) * T(n,k+2), with T given by A008288. 1
1, 10, 75, 500, 3149, 19214, 115031, 680424, 3992921, 23305234, 135514019, 785892316, 4549048229, 26295995926, 151857925039, 876366840784, 5055045581745, 29148894792730, 168045778127355, 968679251764676, 5583525654107645, 32183666525389086, 185514611981021959 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,2
LINKS
MATHEMATICA
A008288[n_, k_]:= Binomial[n, k]*Hypergeometric2F1[-k, k-n, -n, -1];
A026935[n_]:= Sum[A008288[n, k]*A008288[n, k+2], {k, 0, n-2}];
Table[A026935[n], {n, 2, 40}] (* G. C. Greubel, May 25 2021 *)
PROG
(Sage)
@CachedFunction
def A008288(n, k): return sum(binomial(n-j, j)*binomial(n-2*j, k-j) for j in (0..k))
def A026935(n): return sum(A008288(n, k)*A008288(n, k+2) for k in (0..n-2))
[A026935(n) for n in (2..40)] # G. C. Greubel, May 25 2021
CROSSREFS
Cf. A008288.
Sequence in context: A305784 A053464 A111998 * A110127 A233657 A346842
KEYWORD
nonn
AUTHOR
EXTENSIONS
More terms from Sean A. Irvine, Oct 17 2019
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 18 18:49 EDT 2024. Contains 371781 sequences. (Running on oeis4.)