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!)
A128593 Column 1 of triangle A128592; a(n) = coefficient of q^(n+2) in the q-analog of the odd double factorials (2n+3)!! for n>=0. 5

%I #12 Jan 27 2024 12:32:56

%S 1,3,12,45,170,644,2451,9365,35908,138104,532589,2058782,7975216,

%T 30951921,120326060,468473348,1826415556,7129330988,27860219331,

%U 108984557708,426730087879,1672310507262,6558840830680,25742937514814,101108341344396,397368218111003

%N Column 1 of triangle A128592; a(n) = coefficient of q^(n+2) in the q-analog of the odd double factorials (2n+3)!! for n>=0.

%H Alois P. Heinz, <a href="/A128593/b128593.txt">Table of n, a(n) for n = 0..500</a>

%F a(n) = [q^(n+2)] Product_{j=1..n+2} (1-q^(2j-1))/(1-q) for n>=0.

%p b:= proc(n) option remember; `if`(n=0, 1,

%p simplify(b(n-1)*(1-q^(2*n-1))/(1-q)))

%p end:

%p a:= n-> coeff(b(n+2), q, n+2):

%p seq(a(n), n=0..30); # _Alois P. Heinz_, Sep 22 2021

%t a[n_] := SeriesCoefficient[Product[(1-q^(2j-1))/(1-q), {j, 1, n+2}], {q, 0, n+2}];

%t Table[a[n], {n, 0, 30}] (* _Jean-François Alcover_, Jan 27 2024 *)

%o (PARI) {a(n)=polcoeff(prod(j=1,n+2,(1-q^(2*j-1))/(1-q)),n+2,q)}

%Y Cf. A128592; A128080; A001147 ((2n-1)!!); A128594 (column 2), A128595 (row sums).

%K nonn

%O 0,2

%A _Paul D. Hanna_, Mar 12 2007

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 March 19 03:33 EDT 2024. Contains 370952 sequences. (Running on oeis4.)