A263394
a(n) = Product_{i=1..n} (3^i - 2^i).
Original entry on oeis.org
1, 5, 95, 6175, 1302925, 866445125, 1784010512375, 11248186280524375, 215638979183932793125, 12512451767147700321078125, 2190917791975795178520458609375, 1155369543009475708416871245360859375, 1832567448623162714866960405275465241328125
Offset: 1
Cf. sequences of the form Product_{i=1..n}(j^i - 1):
A005329 (j=2),
A027871 (j=3),
A027637 (j=4),
A027872 (j=5),
A027873 (j=6),
A027875 (j=7),
A027876 (j=8),
A027877 (j=9),
A027878 (j=10),
A027879 (j=11),
A027880 (j=12).
Cf. sequences of the form Product_{i=1..n}(j^i - k^1), k>1:
A269576 (j=4, k=3),
A269661 (j=5, k=4).
-
[&*[ 3^k-2^k: k in [1..n] ]: n in [1..16]]; // Vincenzo Librandi, Mar 03 2016
-
A263394:=n->mul(3^i-2^i, i=1..n): seq(A263394(n), n=1..15); # Wesley Ivan Hurt, Mar 02 2016
-
Table[Product[3^i - 2^i, {i, n}], {n, 15}] (* Wesley Ivan Hurt, Mar 02 2016 *)
FoldList[Times,Table[3^i-2^i,{i,15}]] (* Harvey P. Dale, Feb 06 2017 *)
-
a(n) = prod(k=1, n, 3^k-2^k); \\ Michel Marcus, Mar 05 2016
A269661
a(n) = Product_{i=1..n} (5^i - 4^i).
Original entry on oeis.org
1, 9, 549, 202581, 425622681, 4907003889249, 302963327126122509, 98490045052104040328301, 166544794872251942218390753281, 1451779137596368920662880897497387769, 64798450159010700654830227323217753649135349
Offset: 1
Cf. sequences of the form Product_{i=1..n}(j^i - 1):
A005329 (j=2),
A027871 (j=3),
A027637 (j=4),
A027872 (j=5),
A027873 (j=6),
A027875 (j=7),
A027876 (j=8),
A027877 (j=9),
A027878 (j=10),
A027879 (j=11),
A027880 (j=12).
Cf. sequences of the form Product_{i=1..n}(j^i - k^1), k>1:
A263394 (j=3, k=2),
A269576 (j=4, k=3).
-
[&*[ 5^k-4^k: k in [1..n] ]: n in [1..16]]; // Vincenzo Librandi, Mar 03 2016
-
Table[Product[5^i - 4^i, {i, n}], {n, 15}] (* Vincenzo Librandi, Mar 03 2016 *)
Table[5^(Binomial[n + 1, 2]) *QPochhammer[4/5, 4/5, n], {n, 1, 20}] (* G. C. Greubel, Mar 05 2016 *)
FoldList[Times,Table[5^n-4^n,{n,15}]] (* Harvey P. Dale, Aug 28 2018 *)
-
a(n) = prod(k=1, n, 5^k-4^k); \\ Michel Marcus, Mar 05 2016
Showing 1-2 of 2 results.
Comments