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!)
A114796 Cumulative product of sextuple factorial A085158. 1

%I #12 Sep 08 2022 08:45:23

%S 1,1,2,6,24,120,720,5040,80640,2177280,87091200,4790016000,

%T 344881152000,31384184832000,7030057402368000,2847173247959040000,

%U 1822190878693785600000,1703748471578689536000000

%N Cumulative product of sextuple factorial A085158.

%H G. C. Greubel, <a href="/A114796/b114796.txt">Table of n, a(n) for n = 0..91</a>

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/Multifactorial.html">Multifactorial</a>.

%F a(n) = Product_{j=0..n} j!!!!!!.

%F a(n) = Product_{j=0..n} j!6.

%F a(n) = Product_{j=0..n} A085158(j).

%F a(n) = n!!!!!! * a(n-1) where a(0) = 1, a(1) = 1 and n >= 2.

%F a(n) = n*(n-6)!!!!!! * a(n-1) where a(0) = 1, a(1) = 1, a(2) = 2.

%e a(10) = 1!6 * 2!6 * 3!6 * 4!6 * 5!6 * 6!6 * 7!6 * 8!6 * 9!6 * 10!6

%e = 1 * 2 * 3 * 4 * 5 * 6 * 7 * 16 * 27 * 40 = 87091200 = 2^11 * 3^5 * 5^2 * 7.

%e Note that a(10) + 1 = 87091201 is prime, as is a(9) + 1 = 2177281.

%p b:= n-> `if`(n<1, 1, n*b(n-5)); a:= n-> product(b(j), j = 0..n); seq(a(n), n = 0..20); # _G. C. Greubel_, Aug 22 2019

%t b[n_]:= b[n]= If[n<1, 1, n*b[n-6]]; a[n_]:= Product[b[j], {j,0,n}];

%t Table[a[n], {n, 0, 20}] (* _G. C. Greubel_, Aug 22 2019 *)

%o (PARI) b(n)=if(n<1, 1, n*b(n-6));

%o vector(20, n, n--; prod(j=0,n, b(j)) ) \\ _G. C. Greubel_, Aug 22 2019

%o (Magma) b:=func< n | n le 6 select n else n*Self(n-6) >;

%o [1] cat [(&*[b(j): j in [1..n]]): n in [1..20]]; // _G. C. Greubel_, Aug 22 2019

%o (Sage)

%o def b(n):

%o if (n<1): return 1

%o else: return n*b(n-6)

%o [product(b(j) for j in (0..n)) for n in (0..20)] # _G. C. Greubel_, Aug 22 2019

%o (GAP)

%o b:= function(n)

%o if n<1 then return 1;

%o else return n*b(n-6);

%o fi;

%o end;

%o List([0..20], n-> Product([0..n], j-> b(j)) ); # _G. C. Greubel_, Aug 22 2019

%Y Cf. A000178, A006882, A007662, A085150, A085157, A085158, A114347.

%K easy,nonn

%O 0,3

%A _Jonathan Vos Post_, Feb 18 2006

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 April 16 01:01 EDT 2024. Contains 371696 sequences. (Running on oeis4.)