The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
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 (list; graph; refs; listen; history; text; internal format)
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
CROSSREFS
Sequence in context: A274843 A039156 A132030 * A300819 A161949 A004851
KEYWORD
easy,nonn
AUTHOR
Robert Price, Jun 07 2017
STATUS
approved

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 June 7 05:57 EDT 2024. Contains 373144 sequences. (Running on oeis4.)