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!)
A077568 a(1,n) as defined in A003148. 2
1, -1, 11, -39, 633, -4065, 86355, -818055, 21370545, -270059265, 8348125275, -132575387175, 4724044288425, -90632895177825, 3652562288650275, -82321915303002375, 3698358581066774625, -95898903720429434625, 4748433998702431912875, -139390494822185358126375 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
Conjecture: a(n) +a(n-1) -2*(2*n+1)*(n-1)*a(n-2)=0. - R. J. Mathar, May 26 2016
MAPLE
A003148 := proc(m::integer, n::integer) RETURN( doublefactorial(2*n+2*m+1)/(2*m+1)*simplify(hypergeom([ -n, m+1/2], [m+3/2], 2))) ; end proc:
A077568 := proc(n::integer) A003148(1, n) ; end proc:
for n from 0 to 20 do print(A077568(n)); od: # R. J. Mathar, Apr 25 2006
MATHEMATICA
a[m_, n_] := (2n + 2m + 1)!!/(2m + 1)*Hypergeometric2F1[-n, m + 1/2, m + 3/2, 2];
Table[a[1, n], {n, 0, 15}] (* Jean-François Alcover, Jul 31 2023, after R. J. Mathar *)
CROSSREFS
Sequence in context: A341232 A183940 A335077 * A122014 A342833 A335491
KEYWORD
sign
AUTHOR
R. J. Mathar, Jul 01 2003
EXTENSIONS
More terms from R. J. Mathar, Apr 25 2006
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 19 08:08 EDT 2024. Contains 371782 sequences. (Running on oeis4.)