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!)
A217757 Product_{i=0..n} (i! + 1). 6
2, 4, 12, 84, 2100, 254100, 183206100, 923541950100, 37238134969982100, 13513011656042074430100, 49036030210457135734021310100, 1957361459740805606124917565020990100, 937579272951542930363610919638075856505150100 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
FORMULA
a(n) ~ c * A000178(n), where c = A238695 = Product_{k>=0} (1 + 1/k!) = 7.364308272367257256372772509631... . - Vaclav Kotesovec, Jul 20 2015
MAPLE
a:= proc(n) a(n):= `if`(n=0, 2, a(n-1)*(n!+1)) end:
seq(a(n), n=0..14); # Alois P. Heinz, May 20 2013
MATHEMATICA
Table[Product[i!+1, {i, 0, n}], {n, 0, 12}] (* Geoffrey Critzer, May 04 2013 *)
Rest[FoldList[Times, 1, Range[0, 15]!+1]] (* Harvey P. Dale, May 28 2013 *)
PROG
(JavaScript)
function factorial(n) {
var i, c=1;
for (i=2; i<=n; i++) c*=i;
return c;
}
a=2;
for (j=1; j<10; j++) {
a*=(factorial(j)+1);
document.write(a+", ");
}
CROSSREFS
Sequence in context: A144295 A119489 A353743 * A053631 A319634 A217041
KEYWORD
nonn
AUTHOR
Jon Perry, Mar 23 2013
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 March 29 01:36 EDT 2024. Contains 371264 sequences. (Running on oeis4.)