A298994
Expansion of Product_{n>=1} (1 + (4*x)^n)^(1/2).
Original entry on oeis.org
1, 2, 6, 52, 134, 956, 4124, 20008, 73158, 439660, 1874612, 8350808, 37583004, 169862616, 779948152, 3774085968, 15435601222, 69542934604, 329825707332, 1403190752632, 6313190864052, 29079505547912, 126937389732872, 552273916408368, 2477249228318748
Offset: 0
-
CoefficientList[Series[Sqrt[QPochhammer[-1, 4*x]/2], {x, 0, 20}], x] (* Vaclav Kotesovec, Apr 18 2018 *)
A271236
G.f.: Product_{k>=1} 1/(1 - (9*x)^k)^(1/3).
Original entry on oeis.org
1, 3, 45, 450, 5805, 52326, 705591, 6190425, 77219325, 751178610, 8522919063, 80502824835, 975122402985, 8949951461925, 100088881882830, 1003346683458480, 10828622925516312, 104307212166072165, 1152197107898173875, 11048535008792967825, 119509353627934830327
Offset: 0
-
nmax = 30; CoefficientList[Series[Product[1/(1 - (9*x)^k)^(1/3), {k, 1, nmax}], {x, 0, nmax}], x]
-
N=99; x='x+O('x^N); Vec(prod(k=1, N, 1/(1-(9*x)^k)^(1/3))) \\ Altug Alkan, Apr 20 2018
A303152
Expansion of Product_{n>=1} (1 - (9*x)^n)^(1/3).
Original entry on oeis.org
1, -3, -36, -207, -2214, -2754, -138591, 547722, -3730293, 30138075, 133709535, 7735237479, -35284817430, 702841889322, 3056530613769, 9493893988155, 112554319443867, 3822223052352735, -3940051663965051, 250298859930263181, -551418001934739786, 1061747224529191191
Offset: 0
A303124
Expansion of Product_{n>=1} (1 + (16*x)^n)^(1/4).
Original entry on oeis.org
1, 4, 40, 1504, 10336, 387968, 5349632, 111442944, 1100563968, 36711258112, 493805416448, 9186633203712, 134635599806464, 2648342619422720, 43443234834350080, 938422838970810368, 11378951438668791808, 224791017150689574912, 4129154423023897411584
Offset: 0
-
CoefficientList[Series[(QPochhammer[-1, 16*x]/2)^(1/4), {x, 0, 20}],
x] (* Vaclav Kotesovec, Apr 19 2018 *)
-
N=66; x='x+O('x^N); Vec(prod(k=1, N, (1+(16*x)^k)^(1/4)))
A303125
Expansion of Product_{n>=1} (1 + (25*x)^n)^(1/5).
Original entry on oeis.org
1, 5, 75, 4500, 43125, 2765000, 55871875, 1876671875, 25128437500, 1495793359375, 28953471875000, 871257974609375, 18280647500000000, 596362168603515625, 14502797130615234375, 519397373566650390625, 8604439235863037109375
Offset: 0
-
CoefficientList[Series[(QPochhammer[-1, 25*x]/2)^(1/5), {x, 0, 20}],
x] (* Vaclav Kotesovec, Apr 19 2018 *)
-
N=66; x='x+O('x^N); Vec(prod(k=1, N, (1+(25*x)^k)^(1/5)))
A303130
Expansion of Product_{n>=1} (1 + (9*x)^n)^(-1/3).
Original entry on oeis.org
1, -3, -9, -288, 459, -19278, -1539, -1265301, 10734525, -147277926, 520204923, -7511358663, 88687160577, -668191863951, 5357547144702, -87542760890124, 967961569696722, -5115624735401361, 46065749188891275, -430898393089547667, 6203508335817169257
Offset: 0
-
CoefficientList[Series[(2/QPochhammer[-1, 9*x])^(1/3), {x, 0, 20}], x] (* Vaclav Kotesovec, Apr 20 2018 *)
-
N=99; x='x+O('x^N); Vec(prod(k=1, N, (1 + (9*x)^k)^(-1/3))) \\ Altug Alkan, Apr 20 2018
A303342
Expansion of Product_{k>=1} ((1 + (9*x)^k) / (1 - (9*x)^k))^(1/3).
Original entry on oeis.org
1, 6, 72, 1008, 10746, 130896, 1569456, 17371584, 192625128, 2260005462, 24725148912, 270748885392, 3027318848208, 32608207056528, 354309508944288, 3902606972751168, 41393526342215994, 443390745816982944, 4783687280410092984, 50532141192366275280
Offset: 0
-
nmax = 20; CoefficientList[Series[Product[((1+(9*x)^k)/(1-(9*x)^k))^(1/3), {k, 1, nmax}], {x, 0, nmax}], x]
A370739
a(n) = 5^(2*n) * [x^n] Product_{k>=1} (1 + 3*x^k)^(1/5).
Original entry on oeis.org
1, 15, -75, 35250, -1138125, 72645000, -3307996875, 244578890625, -15502648125000, 985908809765625, -63515254624218750, 4314500023927734375, -291905297026816406250, 19789483493484814453125, -1355414138248614990234375, 93666904586649390380859375, -6498800175020013123779296875
Offset: 0
-
nmax = 20; CoefficientList[Series[Product[1+3*x^k, {k, 1, nmax}]^(1/5), {x, 0, nmax}], x] * 25^Range[0, nmax]
nmax = 20; CoefficientList[Series[Product[1+3*(25*x)^k, {k, 1, nmax}]^(1/5), {x, 0, nmax}], x]
Showing 1-8 of 8 results.
Comments