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!)
A273889 a(n) = ((4n-3)!! + (4n-2)!!) / (4n-1). 5
1, 9, 435, 52017, 11592315, 4152126825, 2182133628675, 1581940549814625, 1512952069890336075, 1845586177840605209625, 2796710279417971723681875, 5153962250373844341910100625, 11351091844757135191108560046875, 29444207228221006416048397134215625, 88848552445321896564985597922269171875 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
Hong-Chang Wang, Bridan's blog (in Chinese)
EXAMPLE
a(1) = (1 + 2)/3 = 1;
a(2) = (1*3*5 + 2*4*6)/7 = 9;
a(3) = (1*3*5*7*9 + 2*4*6*8*10)/11 = 435.
MATHEMATICA
B[n_, k_] := (Product[k (i - 1) + 1, {i, 2 n - 1}] + Product[k (i - 1) + 2, {i, 2 n - 1}])/(2 k (n - 1) + 3); Table[B[n, 2], {n, 15}] (* Michael De Vlieger, Jun 10 2016 *)
Table[((4n-3)!!+(4n-2)!!)/(4n-1), {n, 20}] (* Harvey P. Dale, Mar 08 2018 *)
PROG
(Python)
for n in range(1, 101):
if n == 1:
a = 1
b = 2
else:
a = a*(4*n-5)*(4*n-3)
b = b*(4*n-4)*(4*n-2)
c = (a+b)/(4*n-1)
print(str(n)+" "+str(c))
CROSSREFS
Sequence in context: A092813 A242280 A266294 * A167720 A287102 A173954
KEYWORD
nonn
AUTHOR
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 25 07:07 EDT 2024. Contains 371964 sequences. (Running on oeis4.)