cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A220790 Product(6^n - 6^k, k=0..n-1).

This page as a plain text file.
%I A220790 #31 Sep 08 2022 08:46:04
%S A220790 1,5,1050,8127000,2273284440000,22906523331216000000,
%T A220790 8310241106635054164480000000,108537128570336598656772717772800000000,
%U A220790 51032497739317419104816901041614046625792000000000
%N A220790 Product(6^n - 6^k, k=0..n-1).
%H A220790 Vincenzo Librandi, <a href="/A220790/b220790.txt">Table of n, a(n) for n = 0..35</a>
%F A220790 a(n) = (6^n - 1)*(6^n - 6)*...*(6^n - 6^(n-1)) for n>0, a(0)=1.
%F A220790 a(n) = A109354(n)*A027873(n). - _Bruno Berselli_, Jan 30 2013
%t A220790 Table[Product[6^n - 6^k, {k, 0, n-1}], {n, 0, 60}]
%o A220790 (Magma)
%o A220790 [1] cat [&*[(6^n - 6^k): k in [0..n-1]]: n in [1..8]]; // _Bruno Berselli_, Jan 28 2013
%o A220790 (Magma) /* By the second formula: */
%o A220790 m:=9;
%o A220790 A109354 := [6^(n*(n-1) div 2): n in [0..m-1]];
%o A220790 A027873 := [1] cat [&*[6^i-1: i in [1..n]]: n in [1..m]];
%o A220790 [A109354[i]*A027873[i]: i in [1..m]]; // _Bruno Berselli_, Jan 30 2013
%Y A220790 Cf. A027873, A109354.
%Y A220790 Sequences given by product(m^n-m^k, k=0..n-1): A002884 (m=2), A053290 (m=3), A053291 (m=4), A053292 (m=5), A053293 (m=7), A052496 (m=8), A052497 (m=9), A052498 (m=11).
%K A220790 nonn,easy
%O A220790 0,2
%A A220790 _Vincenzo Librandi_, Jan 28 2013