login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Product of first n odd numbers plus product of first n even numbers: (2n-1)!! + (2n)!!, where k!! = A006882(k).
3

%I #16 May 05 2021 19:22:04

%S 3,11,63,489,4785,56475,780255,12348945,220253985,4370620275,

%T 95498916975,2278224696825,58917607974225,1641787169697675,

%U 49040157044253375,1563094742062478625,52953322446161762625,1899986948191060603875,71977860935783603175375,2870913642898706235455625

%N Product of first n odd numbers plus product of first n even numbers: (2n-1)!! + (2n)!!, where k!! = A006882(k).

%F a(n) = A006882(2*n-1) + A006882(2*n).

%F a(n) = A001147(n) + A000165(n).

%F a(n) +(-4*n+3)*a(n-1) +2*(n-1)*(2*n-3)*a(n-2)=0. - _R. J. Mathar_, Nov 23 2014

%e a(3) = 1*3*5 + 2*4*6 = 15 + 48 = 63.

%t Table[n!!+(n+1)!!,{n,1,41,2}] (* _Harvey P. Dale_, Jan 22 2019 *)

%o (Python)

%o o=e=1

%o for n in range(1,99,2):

%o o*=n

%o e*=n+1

%o print(str(e+o), end=',')

%o (PARI) a(n)=prod(i=1,n,2*i-1)+prod(i=1,n,2*i) \\ _Ralf Stephan_, Nov 28 2013

%Y Cf. A006882, A122649, A129890.

%K nonn

%O 1,1

%A _Alex Ratushnyak_, Nov 27 2013