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!)
A181088 a(n) = A181089(2*n+1,n)/(n+2). 1
1, -4, -40, 672, 8064, -253440, -3294720, 153753600, 2091048960, -130025226240, -1820353167360, 141707492720640, 2024392753152000, -189483161695027200, -2747505844577894400, 300609462994993152000, 4408938790593232896000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
What are the constraints on left-right symmetric triangles t(n,m) such that t(2*n,n)/(n+1) are integers?
LINKS
FORMULA
a(n) = (A060821(2*n+1, n) + A060821(2*n+1, n+1))/(n+2). - G. C. Greubel, Apr 04 2021
MATHEMATICA
(* First program *)
p[x_, n_] = HermiteH[n, x] + ExpandAll[x^n*HermiteH[n, 1/x]];
b:= Table[CoefficientList[p[x, n], x], {n, 0, 50}];
Table[b[[2*n+2, n+1]]/(n+2), {n, 0, 20}]
(* Second program *)
A060821[n_, k_]:= If[EvenQ[n-k], (-1)^(Floor[(n-k)/2])*2^k*n!/(k!*(Floor[(n - k)/2]!)), 0];
a[n_]:= (A060821[2*n+1, n] + A060821[2*n+1, n+1])/(n+2);
Table[a[n], {n, 0, 25}] (* G. C. Greubel, Apr 04 2021 *)
PROG
(Sage)
def A060821(n, k): return (-1)^((n-k)//2)*2^k*factorial(n)/(factorial(k)*factorial( (n-k)//2)) if (n-k)%2==0 else 0
def a(n): return (A060821(2*n+1, n) + A060821(2*n+1, n+1))/(n+2)
[a(n) for n in (0..25)] # G. C. Greubel, Apr 04 2021
CROSSREFS
Sequence in context: A343446 A205671 A234294 * A005431 A153849 A251574
KEYWORD
sign
AUTHOR
Roger L. Bagula, Oct 02 2010
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 20 00:03 EDT 2024. Contains 371798 sequences. (Running on oeis4.)