login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A288327
Decuple factorial, 10-factorial, n!10, n!!!!!!!!!!.
8
1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 24, 39, 56, 75, 96, 119, 144, 171, 200, 231, 528, 897, 1344, 1875, 2496, 3213, 4032, 4959, 6000, 7161, 16896, 29601, 45696, 65625, 89856, 118881, 153216, 193401, 240000, 293601, 709632, 1272843, 2010624, 2953125, 4133376
OFFSET
0,3
LINKS
Eric Weisstein's World of Mathematics, Multifactorial.
FORMULA
a(n)=1 for n < 1, otherwise a(n) = n*a(n-10).
Sum_{n>=0} 1/a(n) = A342033. - Amiram Eldar, May 23 2022
EXAMPLE
a(13) = 13 * 3 * 1 = 39.
MAPLE
a:= n-> `if`(n<1, 1, n*a(n-10)); seq(a(n), n=0..50); # G. C. Greubel, Aug 22 2019
MATHEMATICA
MultiFactorial[n_, k_]:=If[n<1, 1 , n*MultiFactorial[n-k, k]];
Table[MultiFactorial[i, 10], {i, 0, 100}]
Table[Times@@Range[n, 1, -10], {n, 0, 50}] (* Harvey P. Dale, Aug 11 2019 *)
PROG
(PARI) a(n)=if(n<1, 1, n*a(n-10));
vector(40, n, n--; a(n) ) \\ G. C. Greubel, Aug 22 2019
(Magma) b:=func< n | n le 10 select n else n*Self(n-10) >;
[1] cat [b(n): n in [1..50]]; // G. C. Greubel, Aug 22 2019
(Sage)
def a(n):
if (n<1): return 1
else: return n*a(n-10)
[a(n) for n in (0..50)] # G. C. Greubel, Aug 22 2019
(GAP)
a:= function(n)
if n<1 then return 1;
else return n*a(n-10);
fi;
end;
List([0..50], n-> a(n) ); # G. C. Greubel, Aug 22 2019
KEYWORD
easy,nonn
AUTHOR
Robert Price, Jun 07 2017
STATUS
approved